initial commit (migrated)
This commit is contained in:
commit
b594facb51
143 changed files with 11057 additions and 0 deletions
20
lib/features/quote/data/models/quote_model.g.dart
Normal file
20
lib/features/quote/data/models/quote_model.g.dart
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'quote_model.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
_QuoteModel _$QuoteModelFromJson(Map<String, dynamic> json) => _QuoteModel(
|
||||
id: (json['id'] as num).toInt(),
|
||||
text: json['text'] as String,
|
||||
author: json['author'] as String,
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$QuoteModelToJson(_QuoteModel instance) =>
|
||||
<String, dynamic>{
|
||||
'id': instance.id,
|
||||
'text': instance.text,
|
||||
'author': instance.author,
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue