FormItem constructor

FormItem({
  1. bool isActive = true,
  2. EdgeInsets? margin,
})

isActive show item on form

Implementation

FormItem({
  bool isActive = true,
  this.margin,
}) : _isActive = isActive;