Line data Source code
1 : // GENERATED CODE - DO NOT MODIFY BY HAND
2 :
3 : part of 'organisations_section_model.dart';
4 :
5 : // **************************************************************************
6 : // JsonSerializableGenerator
7 : // **************************************************************************
8 :
9 0 : _$_OrganisationsSectionModel _$$_OrganisationsSectionModelFromJson(
10 : Map<String, dynamic> json) =>
11 0 : _$_OrganisationsSectionModel(
12 0 : creator: OrganisationCreatorViewModel.fromJson(
13 0 : json['creator'] as Map<String, dynamic>),
14 0 : selector: OrganisationSelectorViewModel.fromJson(
15 0 : json['selector'] as Map<String, dynamic>),
16 0 : deleting: json['deleting'] as bool,
17 : );
18 :
19 0 : Map<String, dynamic> _$$_OrganisationsSectionModelToJson(
20 : _$_OrganisationsSectionModel instance) =>
21 0 : <String, dynamic>{
22 0 : 'creator': instance.creator.toJson(),
23 0 : 'selector': instance.selector.toJson(),
24 0 : 'deleting': instance.deleting,
25 : };
|