copyWith method
Implementation
MessageNotification copyWith({
String? title,
String? body,
String? image,
String? androidChannelId,
}) =>
MessageNotification(
title: title ?? this.title,
body: body ?? this.body,
image: image ?? this.image,
androidChannelId: androidChannelId ?? this.androidChannelId,
);