copyWith method

DgisObjectId copyWith({
  1. int? objectId,
  2. int? entranceId,
})

Implementation

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