mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 13:58:47 +00:00
16 lines
536 B
Dart
16 lines
536 B
Dart
// 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};
|