25 lines
794 B
Dart
25 lines
794 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'profile_response.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
_ProfileResponse _$ProfileResponseFromJson(Map<String, dynamic> json) =>
|
|
_ProfileResponse(
|
|
message: json['message'] as String?,
|
|
success: json['success'] as bool?,
|
|
data:
|
|
json['data'] == null
|
|
? null
|
|
: ProfileData.fromJson(json['data'] as Map<String, dynamic>),
|
|
);
|
|
|
|
Map<String, dynamic> _$ProfileResponseToJson(_ProfileResponse instance) =>
|
|
<String, dynamic>{
|
|
'message': instance.message,
|
|
'success': instance.success,
|
|
'data': instance.data,
|
|
};
|