copyWith method
Implementation
UpdateNotificationSchemeDetails copyWith(
{String? description, String? name}) {
return UpdateNotificationSchemeDetails(
description: description ?? this.description,
name: name ?? this.name,
);
}
UpdateNotificationSchemeDetails copyWith(
{String? description, String? name}) {
return UpdateNotificationSchemeDetails(
description: description ?? this.description,
name: name ?? this.name,
);
}