copyWith method
Implementation
SetBusinessAccountUsername copyWith({
String? businessConnectionId,
String? username,
}) => SetBusinessAccountUsername(
businessConnectionId: businessConnectionId ?? this.businessConnectionId,
username: username ?? this.username,
);