copyWith method
Implementation
NotificationSchemeNotificationDetails copyWith(
    {String? notificationType, String? parameter}) {
  return NotificationSchemeNotificationDetails(
    notificationType: notificationType ?? this.notificationType,
    parameter: parameter ?? this.parameter,
  );
}