// GENERATED CODE - DO NOT MODIFY BY HAND part of 'signal_message.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** _$SignalMessageImpl _$$SignalMessageImplFromJson(Map json) => _$SignalMessageImpl( type: json['type'] as String?, fromDeviceId: json['fromDeviceId'] as String?, toDeviceId: json['toDeviceId'] as String?, deviceType: json['deviceType'] as String?, payload: json['payload'] as String?, authType: json['authType'] as String?, authValue: json['authValue'] as String?, ); Map _$$SignalMessageImplToJson(_$SignalMessageImpl instance) => { 'type': instance.type, 'fromDeviceId': instance.fromDeviceId, 'toDeviceId': instance.toDeviceId, 'deviceType': instance.deviceType, 'payload': instance.payload, 'authType': instance.authType, 'authValue': instance.authValue, };