You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
672 B
19 lines
672 B
3 years ago
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
|
||
|
part of 'home_swiper_model.dart';
|
||
|
|
||
|
// **************************************************************************
|
||
|
// JsonSerializableGenerator
|
||
|
// **************************************************************************
|
||
|
|
||
|
HomeSwiperModel _$HomeSwiperModelFromJson(Map<String, dynamic> json) =>
|
||
|
HomeSwiperModel(
|
||
|
id: json['id'] as int,
|
||
|
type: json['type'] as int,
|
||
|
customizeUrl: json['customizeUrl'] as String?,
|
||
|
associationId: json['associationId'] as int?,
|
||
|
imgList: (json['imgList'] as List<dynamic>?)
|
||
|
?.map((e) => ImgModel.fromJson(e as Map<String, dynamic>))
|
||
|
.toList(),
|
||
|
);
|