You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
37 lines
1.1 KiB
2 years ago
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
|
||
|
part of 'request_body.dart';
|
||
|
|
||
|
// **************************************************************************
|
||
|
// JsonSerializableGenerator
|
||
|
// **************************************************************************
|
||
|
|
||
|
RequestBody _$RequestBodyFromJson(Map<String, dynamic> json) {
|
||
|
$checkKeys(
|
||
|
json,
|
||
|
allowedKeys: const ['description', 'content', 'required'],
|
||
|
);
|
||
|
return RequestBody(
|
||
|
description: json['description'] as String?,
|
||
|
content: (json['content'] as Map<String, dynamic>?)?.map(
|
||
|
(k, e) => MapEntry(k, MediaType.fromJson(e as Map<String, dynamic>)),
|
||
|
),
|
||
|
required: json['required'] as bool?,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
Map<String, dynamic> _$RequestBodyToJson(RequestBody instance) {
|
||
|
final val = <String, dynamic>{};
|
||
|
|
||
|
void writeNotNull(String key, dynamic value) {
|
||
|
if (value != null) {
|
||
|
val[key] = value;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
writeNotNull('description', instance.description);
|
||
|
writeNotNull('content', instance.content?.map((k, e) => MapEntry(k, e.toJson())));
|
||
|
writeNotNull('required', instance.required);
|
||
|
return val;
|
||
|
}
|