feedback models added
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'meta.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
_Meta _$MetaFromJson(Map<String, dynamic> json) => _Meta(
|
||||
limit: (json['limit'] as num?)?.toInt(),
|
||||
offset: (json['offset'] as num?)?.toInt(),
|
||||
page: (json['page'] as num?)?.toInt(),
|
||||
pages: (json['pages'] as num?)?.toInt(),
|
||||
total: (json['total'] as num?)?.toInt(),
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$MetaToJson(_Meta instance) => <String, dynamic>{
|
||||
'limit': instance.limit,
|
||||
'offset': instance.offset,
|
||||
'page': instance.page,
|
||||
'pages': instance.pages,
|
||||
'total': instance.total,
|
||||
};
|
||||
Reference in New Issue
Block a user