copyWith method

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

Implementation

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