copyWith method
PermissionSubjectWithGroupId
copyWith({
- PermissionSubjectWithGroupIdType? type,
- String? identifier,
Implementation
PermissionSubjectWithGroupId copyWith(
{PermissionSubjectWithGroupIdType? type, String? identifier}) {
return PermissionSubjectWithGroupId(
type: type ?? this.type,
identifier: identifier ?? this.identifier,
);
}