Daily commit
This commit is contained in:
16
lib/dto/fail_response_dto.g.dart
Normal file
16
lib/dto/fail_response_dto.g.dart
Normal file
@ -0,0 +1,16 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'fail_response_dto.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
FailResponseDTO _$FailResponseDTOFromJson(Map<String, dynamic> json) =>
|
||||
FailResponseDTO(
|
||||
message: json['message'] as String,
|
||||
code: (json['code'] as num?)?.toInt(),
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$FailResponseDTOToJson(FailResponseDTO instance) =>
|
||||
<String, dynamic>{'code': instance.code, 'message': instance.message};
|
||||
Reference in New Issue
Block a user