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.
41 lines
1.4 KiB
41 lines
1.4 KiB
// GENERATED CODE - DO NOT MODIFY BY HAND |
|
|
|
part of 'page.dart'; |
|
|
|
// ************************************************************************** |
|
// JsonSerializableGenerator |
|
// ************************************************************************** |
|
|
|
PageInfo<T> _$PageInfoFromJson<T>( |
|
Map<String, dynamic> json, |
|
T Function(Object? json) fromJsonT, |
|
) => |
|
PageInfo<T>( |
|
pageNum: (json['pageNum'] as num?)?.toInt(), |
|
current: json['current'], |
|
pageSize: (json['pageSize'] as num?)?.toInt(), |
|
size: json['size'], |
|
pages: json['pages'], |
|
hasPreviousPage: json['hasPreviousPage'] as bool?, |
|
hasNextPage: json['hasNextPage'] as bool?, |
|
total: json['total'] as String?, |
|
list: (json['list'] as List<dynamic>?)?.map(fromJsonT).toList(), |
|
records: (json['records'] as List<dynamic>?)?.map(fromJsonT).toList(), |
|
); |
|
|
|
Map<String, dynamic> _$PageInfoToJson<T>( |
|
PageInfo<T> instance, |
|
Object? Function(T value) toJsonT, |
|
) => |
|
<String, dynamic>{ |
|
'pageNum': instance.pageNum, |
|
'current': instance.current, |
|
'pageSize': instance.pageSize, |
|
'size': instance.size, |
|
'pages': instance.pages, |
|
'hasPreviousPage': instance.hasPreviousPage, |
|
'hasNextPage': instance.hasNextPage, |
|
'total': instance.total, |
|
'list': instance.list?.map(toJsonT).toList(), |
|
'records': instance.records?.map(toJsonT).toList(), |
|
};
|
|
|