OptionsCardResponse constructor

const OptionsCardResponse({
  1. Key? key,
  2. required String? option,
  3. required bool state,
  4. double minHeight = 60,
})

Implementation

const OptionsCardResponse({
  Key? key,
  required this.option,
  required this.state,
  this.minHeight = 60,
}) : super(key: key);