25 lines
827 B
Dart
25 lines
827 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'note_get_response.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
NoteGetResponseDTO _$NoteGetResponseDTOFromJson(Map<String, dynamic> json) =>
|
|
NoteGetResponseDTO(
|
|
notes:
|
|
(json['notes'] as List<dynamic>)
|
|
.map((e) => NoteDTO.fromJson(e as Map<String, dynamic>))
|
|
.toList(),
|
|
succeeded: json['succeeded'] as bool,
|
|
message: json['message'] as String,
|
|
);
|
|
|
|
Map<String, dynamic> _$NoteGetResponseDTOToJson(NoteGetResponseDTO instance) =>
|
|
<String, dynamic>{
|
|
'notes': instance.notes,
|
|
'succeeded': instance.succeeded,
|
|
'message': instance.message,
|
|
};
|