// GENERATED CODE - DO NOT MODIFY BY HAND part of 'notifyRegisterParams.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** NotifyRegisterParams _$NotifyRegisterParamsFromJson( Map json) => NotifyRegisterParams( username: json['username'] as String, password: json['password'] as String, fcmToken: json['fcmToken'] as String, ); Map _$NotifyRegisterParamsToJson( NotifyRegisterParams instance) => { 'username': instance.username, 'password': instance.password, 'fcmToken': instance.fcmToken, };