copyWith method

ProjectRoleGroup copyWith({
  1. String? displayName,
  2. String? groupId,
  3. String? name,
})

Implementation

ProjectRoleGroup copyWith(
    {String? displayName, String? groupId, String? name}) {
  return ProjectRoleGroup(
    displayName: displayName ?? this.displayName,
    groupId: groupId ?? this.groupId,
    name: name ?? this.name,
  );
}