Field constructor

Field({
  1. required String title,
  2. required int mandatory,
  3. String? rawVal,
  4. String? val,
})

Implementation

Field(
    {required this.title,
    //required this.caption,
    required this.mandatory,
    this.rawVal,
    this.val});