Initial draft
This commit is contained in:
15
lib/dto/note.g.dart
Normal file
15
lib/dto/note.g.dart
Normal file
@ -0,0 +1,15 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'note.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
NoteDTO _$NoteDTOFromJson(Map<String, dynamic> json) =>
|
||||
NoteDTO(id: json['id'] as String, note: json['note'] as String);
|
||||
|
||||
Map<String, dynamic> _$NoteDTOToJson(NoteDTO instance) => <String, dynamic>{
|
||||
'id': instance.id,
|
||||
'note': instance.note,
|
||||
};
|
||||
Reference in New Issue
Block a user