copyWith method
Implementation
DgisObjectId copyWith({
int? objectId,
int? entranceId
}) {
return DgisObjectId(
objectId: objectId ?? this.objectId,
entranceId: entranceId ?? this.entranceId
);
}
DgisObjectId copyWith({
int? objectId,
int? entranceId
}) {
return DgisObjectId(
objectId: objectId ?? this.objectId,
entranceId: entranceId ?? this.entranceId
);
}