FFBranch constructor

FFBranch({
  1. Key? key,
  2. String? notes,
  3. required bool condition,
  4. required Widget trueWidget,
  5. Widget? falseWidget,
})

Implementation

FFBranch({
  Key? key,
  this.notes,
  required this.condition,
  required this.trueWidget,
  this.falseWidget,
}) : super(key: key);