Line data Source code
1 : // GENERATED CODE - DO NOT MODIFY BY HAND
2 :
3 : part of 'section_model.dart';
4 :
5 : // **************************************************************************
6 : // JsonSerializableGenerator
7 : // **************************************************************************
8 :
9 2 : _$_SectionModel _$$_SectionModelFromJson(Map<String, dynamic> json) =>
10 2 : _$_SectionModel(
11 2 : name: json['name'] as String,
12 2 : folderId: json['folderId'] as String,
13 2 : useCasesDocId: json['useCasesDocId'] as String,
14 : );
15 :
16 2 : Map<String, dynamic> _$$_SectionModelToJson(_$_SectionModel instance) =>
17 2 : <String, dynamic>{
18 2 : 'name': instance.name,
19 2 : 'folderId': instance.folderId,
20 2 : 'useCasesDocId': instance.useCasesDocId,
21 : };
|