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