Formdatum constructor

  1. @JsonSerializable(explicitToJson: true, anyMap: true, includeIfNull: false)
const Formdatum({
  1. String? key,
  2. String? value,
  3. String? type,
  4. String? src,
})

Implementation

@JsonSerializable(
  explicitToJson: true,
  anyMap: true,
  includeIfNull: false,
)
const factory Formdatum({
  String? key,
  String? value,
  String? type,
  String? src,
}) = _Formdatum;