Line data Source code
1 : // GENERATED CODE - DO NOT MODIFY BY HAND 2 : 3 : part of 'assetmodel.dart'; 4 : 5 : // ************************************************************************** 6 : // JsonSerializableGenerator 7 : // ************************************************************************** 8 : 9 0 : AssetModel _$AssetModelFromJson(Map<String, dynamic> json) { 10 0 : return AssetModel( 11 0 : json['title'] as String, 12 0 : json['abcd'] as String, 13 : ); 14 : } 15 : 16 0 : Map<String, dynamic> _$AssetModelToJson(AssetModel instance) => 17 0 : <String, dynamic>{ 18 0 : 'title': instance.title, 19 0 : 'abcd': instance.abcd, 20 : };