You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
663 B
Dart
22 lines
663 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'mw_api.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
MWApiErrorException _$MWApiExceptionFromJson(Map<String, dynamic> json) =>
|
|
MWApiErrorException(
|
|
code: json['code'] as String,
|
|
info: json['info'] as String?,
|
|
detail: json['*'] as String?,
|
|
);
|
|
|
|
Map<String, dynamic> _$MWApiExceptionToJson(MWApiErrorException instance) =>
|
|
<String, dynamic>{
|
|
'code': instance.code,
|
|
'info': instance.info,
|
|
'*': instance.detail,
|
|
};
|