copyWith method
Implementation
DeleteAccount copyWith({
String? reason,
String? password,
}) =>
DeleteAccount(
reason: reason ?? this.reason,
password: password ?? this.password,
);
DeleteAccount copyWith({
String? reason,
String? password,
}) =>
DeleteAccount(
reason: reason ?? this.reason,
password: password ?? this.password,
);