initial commit (migrated)
This commit is contained in:
commit
b594facb51
143 changed files with 11057 additions and 0 deletions
42
lib/features/quote/data/models/image_model.g.dart
Normal file
42
lib/features/quote/data/models/image_model.g.dart
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'image_model.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
_ImageModel _$ImageModelFromJson(Map<String, dynamic> json) => _ImageModel(
|
||||
id: json['id'] as String,
|
||||
description: json['description'] as String,
|
||||
color: json['color'] as String,
|
||||
blurHash: json['blurHash'] as String,
|
||||
url: json['url'] as String,
|
||||
originUrl: json['originUrl'] as String,
|
||||
authorName: json['authorName'] as String,
|
||||
authorBio: json['authorBio'] as String,
|
||||
authorLocation: json['authorLocation'] as String,
|
||||
authorTotalLikes: (json['authorTotalLikes'] as num).toInt(),
|
||||
authorTotalPhotos: (json['authorTotalPhotos'] as num).toInt(),
|
||||
authorIsForHire: json['authorIsForHire'] as bool,
|
||||
authorProfileImageUrl: json['authorProfileImageUrl'] as String,
|
||||
authorUrl: json['authorUrl'] as String,
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$ImageModelToJson(_ImageModel instance) =>
|
||||
<String, dynamic>{
|
||||
'id': instance.id,
|
||||
'description': instance.description,
|
||||
'color': instance.color,
|
||||
'blurHash': instance.blurHash,
|
||||
'url': instance.url,
|
||||
'originUrl': instance.originUrl,
|
||||
'authorName': instance.authorName,
|
||||
'authorBio': instance.authorBio,
|
||||
'authorLocation': instance.authorLocation,
|
||||
'authorTotalLikes': instance.authorTotalLikes,
|
||||
'authorTotalPhotos': instance.authorTotalPhotos,
|
||||
'authorIsForHire': instance.authorIsForHire,
|
||||
'authorProfileImageUrl': instance.authorProfileImageUrl,
|
||||
'authorUrl': instance.authorUrl,
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue