copyWith method

SpacePermissionSubjectsExpandable copyWith({
  1. String? user,
  2. String? group,
})

Implementation

SpacePermissionSubjectsExpandable copyWith({String? user, String? group}) {
  return SpacePermissionSubjectsExpandable(
    user: user ?? this.user,
    group: group ?? this.group,
  );
}