copyWith method

SetBusinessAccountUsername copyWith({
  1. String? businessConnectionId,
  2. String? username,
})

Implementation

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