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.
30 lines
1000 B
30 lines
1000 B
1 month ago
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
|
||
|
part of 'verify_code.dart';
|
||
|
|
||
|
// **************************************************************************
|
||
|
// JsonSerializableGenerator
|
||
|
// **************************************************************************
|
||
|
|
||
|
VerifyCode _$VerifyCodeFromJson(Map<String, dynamic> json) => VerifyCode()
|
||
|
..code = (json['code'] as num?)?.toInt()
|
||
|
..data = json['data'] as Map<String, dynamic>?
|
||
|
..extra = json['extra']
|
||
|
..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,
|
||
|
};
|