// GENERATED CODE - DO NOT MODIFY BY HAND part of 'notification_payload.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** NotificationPayload _$NotificationPayloadFromJson(Map json) => NotificationPayload( message: json['message'] as String?, headline: json['headline'] as String?, ); Map _$NotificationPayloadToJson( NotificationPayload instance) => { 'message': instance.message, 'headline': instance.headline, };