copyWith method

DeleteAccount copyWith({
  1. String? reason,
  2. String? password,
})

Implementation

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