copyWith method
Implementation
NotificationAction copyWith(
{int? id, int? notificationId, String? payload}) =>
NotificationAction(
id: id ?? this.id,
notificationId: notificationId ?? this.notificationId,
payload: payload ?? this.payload,
);