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