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.
 
 
 
 
 
 

33 lines
1.1 KiB

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'verify_code.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
VerifyCode _$VerifyCodeFromJson(Map<String, dynamic> json) {
return VerifyCode()
..code = json['code'] as int
..data = json['data'] as Map<String, dynamic>
..extra = json['extra'] == null
? null
: BaseDataExtra.fromJson(json['extra'] as Map<String, dynamic>)
..isError = json['isError'] as bool
..isSuccess = json['isSuccess'] as bool
..msg = json['msg'] as String
..path = json['path'] as String
..timestamp = json['timestamp'] as String;
}
Map<String, dynamic> _$VerifyCodeToJson(VerifyCode instance) =>
<String, dynamic>{
'code': instance.code,
'data': instance.data,
'extra': instance.extra,
'isError': instance.isError,
'isSuccess': instance.isSuccess,
'msg': instance.msg,
'path': instance.path,
'timestamp': instance.timestamp,
};