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.
20 lines
732 B
20 lines
732 B
3 years ago
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
|
||
|
part of 'integral_info_model.dart';
|
||
|
|
||
|
// **************************************************************************
|
||
|
// JsonSerializableGenerator
|
||
|
// **************************************************************************
|
||
|
|
||
|
IntegralInfoModel _$IntegralInfoModelFromJson(Map<String, dynamic> json) =>
|
||
|
IntegralInfoModel(
|
||
|
points: json['points'] as int,
|
||
|
rewardSetting: json['rewardSetting'] as String,
|
||
|
serialNumber: json['serialNumber'] as int,
|
||
|
isSign: json['isSign'] as bool,
|
||
|
signRecordList: (json['signRecordList'] as List<dynamic>)
|
||
|
.map(
|
||
|
(e) => ClockedRecordListModel.fromJson(e as Map<String, dynamic>))
|
||
|
.toList(),
|
||
|
);
|