copyWith method

BulkUserLookupExpandable copyWith({
  1. String? operations,
  2. String? details,
  3. String? personalSpace,
})

Implementation

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