mirror of https://github.com/flutter/samples.git
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.
16 lines
536 B
16 lines
536 B
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'user.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
_$UserImpl _$$UserImplFromJson(Map<String, dynamic> json) => _$UserImpl(
|
|
name: json['name'] as String,
|
|
picture: json['picture'] as String,
|
|
);
|
|
|
|
Map<String, dynamic> _$$UserImplToJson(_$UserImpl instance) =>
|
|
<String, dynamic>{'name': instance.name, 'picture': instance.picture};
|