copyWith method
Implementation
BulkUserLookupExpandable copyWith(
{String? operations, String? details, String? personalSpace}) {
return BulkUserLookupExpandable(
operations: operations ?? this.operations,
details: details ?? this.details,
personalSpace: personalSpace ?? this.personalSpace,
);
}