|
- // GENERATED CODE - DO NOT MODIFY BY HAND
-
- part of 'password.dart';
-
- // **************************************************************************
- // JsonSerializableGenerator
- // **************************************************************************
-
- Password _$PasswordFromJson(Map<String, dynamic> json) {
- return Password()
- ..key = json['key'] as String
- ..currentPassword = json['currentPassword'] as String
- ..newPassword = json['newPassword'] as String;
- }
-
- Map<String, dynamic> _$PasswordToJson(Password instance) => <String, dynamic>{
- 'key': instance.key,
- 'currentPassword': instance.currentPassword,
- 'newPassword': instance.newPassword,
- };
|