HubbleDeclaration constructor

HubbleDeclaration({
  1. required String declarationText,
  2. bool isChecked = true,
  3. bool isMandatory = true,
})

Implementation

HubbleDeclaration({
  required this.declarationText,
  bool isChecked = true,
  this.isMandatory = true,
}) : super(isChecked);