Header constructor

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

Implementation

@JsonSerializable(
  explicitToJson: true,
  anyMap: true,
  includeIfNull: false,
)
const factory Header({
  String? key,
  String? value,
  String? type,
  bool? disabled,
}) = _Header;