25 lines
809 B
Dart
25 lines
809 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'note_add_response.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
NoteAddResponseDTO _$NoteAddResponseDTOFromJson(Map<String, dynamic> json) =>
|
|
NoteAddResponseDTO(
|
|
note:
|
|
json['note'] == null
|
|
? null
|
|
: NoteDTO.fromJson(json['note'] as Map<String, dynamic>),
|
|
succeeded: json['succeeded'] as bool,
|
|
message: json['message'] as String,
|
|
);
|
|
|
|
Map<String, dynamic> _$NoteAddResponseDTOToJson(NoteAddResponseDTO instance) =>
|
|
<String, dynamic>{
|
|
'succeeded': instance.succeeded,
|
|
'message': instance.message,
|
|
'note': instance.note,
|
|
};
|