Info constructor

  1. @JsonSerializable(explicitToJson: true, anyMap: true, includeIfNull: false)
const Info({
  1. @JsonKey(name: '_postman_id') String? postmanId,
  2. String? name,
  3. String? schema,
  4. @JsonKey(name: '_exporter_id') String? exporterId,
})

Implementation

@JsonSerializable(
  explicitToJson: true,
  anyMap: true,
  includeIfNull: false,
)
const factory Info({
  @JsonKey(name: '_postman_id') String? postmanId,
  String? name,
  String? schema,
  @JsonKey(name: '_exporter_id') String? exporterId,
}) = _Info;