copyWith method

SetUsername copyWith({
  1. String? username,
})

Implementation

SetUsername copyWith({
  String? username,
}) =>
    SetUsername(
      username: username ?? this.username,
    );