// GENERATED CODE - DO NOT MODIFY BY HAND part of 'remote_command.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** _RemoteCommand _$RemoteCommandFromJson(Map json) => _RemoteCommand( type: const _RemoteCommandTypeConverter().fromJson( (json['t'] as num).toInt(), ), data: json['d'] as Map?, ); Map _$RemoteCommandToJson(_RemoteCommand instance) => { 't': const _RemoteCommandTypeConverter().toJson(instance.type), 'd': instance.data, };