copyWith method

NotificationSchemeNotificationDetails copyWith({
  1. String? notificationType,
  2. String? parameter,
})

Implementation

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