copyWith method
Implementation
PermissionSubject copyWith(
{PermissionSubjectType? type, String? identifier}) {
return PermissionSubject(
type: type ?? this.type,
identifier: identifier ?? this.identifier,
);
}
PermissionSubject copyWith(
{PermissionSubjectType? type, String? identifier}) {
return PermissionSubject(
type: type ?? this.type,
identifier: identifier ?? this.identifier,
);
}