copyWith method

Implementation

AddContentRestrictionRestrictionsUserItem copyWith(
    {AddContentRestrictionRestrictionsUserItemType? type,
    String? username,
    String? userKey,
    String? accountId}) {
  return AddContentRestrictionRestrictionsUserItem(
    type: type ?? this.type,
    username: username ?? this.username,
    userKey: userKey ?? this.userKey,
    accountId: accountId ?? this.accountId,
  );
}