copyWith method

SpacePermissionCreateSubjectsGroup copyWith({
  1. List<GroupCreate>? results,
  2. int? size,
})

Implementation

SpacePermissionCreateSubjectsGroup copyWith(
    {List<GroupCreate>? results, int? size}) {
  return SpacePermissionCreateSubjectsGroup(
    results: results ?? this.results,
    size: size ?? this.size,
  );
}