MainAppExampleObject constructor

const MainAppExampleObject({
  1. Key? key,
  2. required Question question,
})

Implementation

const MainAppExampleObject({
  Key? key,
  required this.question,
}) : super(key: key);