copyWith method

GroupItem copyWith({
  1. DgisObjectId? id,
  2. ObjectType? type,
})

Implementation

GroupItem copyWith({
  DgisObjectId? id,
  ObjectType? type
}) {
  return GroupItem(
    id: id ?? this.id,
    type: type ?? this.type
  );
}