Line data Source code
1 : // GENERATED CODE - DO NOT MODIFY BY HAND
2 :
3 : part of 'sections_v_m.dart';
4 :
5 : // **************************************************************************
6 : // JsonSerializableGenerator
7 : // **************************************************************************
8 :
9 0 : _$_SectionsVM _$$_SectionsVMFromJson(Map<String, dynamic> json) =>
10 0 : _$_SectionsVM(
11 0 : newName: json['newName'] as String,
12 0 : list: IList<SectionModel>.fromJson(json['list'],
13 0 : (value) => SectionModel.fromJson(value as Map<String, dynamic>)),
14 0 : creatingNewSection: json['creatingNewSection'] as bool,
15 : );
16 :
17 0 : Map<String, dynamic> _$$_SectionsVMToJson(_$_SectionsVM instance) =>
18 0 : <String, dynamic>{
19 0 : 'newName': instance.newName,
20 0 : 'list': instance.list.toJson(
21 0 : (value) => value.toJson(),
22 : ),
23 0 : 'creatingNewSection': instance.creatingNewSection,
24 : };
|