FormArrayItem constructor

FormArrayItem({
  1. required String id,
  2. required dynamic value,
  3. bool selected = false,
  4. Color? color,
  5. String? image,
})

Implementation

FormArrayItem(
    {required this.id,
    required this.value,
    this.selected = false,
    this.color,
    this.image});