Info constructor
- @JsonSerializable.new(explicitToJson: true, anyMap: true, includeIfNull: false)
const
Info(
{ - @JsonKey.new(name: '_postman_id') String? postmanId,
- String? name,
- String? schema,
- @JsonKey.new(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;