Field constructor

Field({
  1. required String key,
  2. String? refValue,
  3. String? stringValue,
})

Implementation

Field({
  required this.key,
  this.refValue,
  this.stringValue,
});