DestinationSchema constructor

DestinationSchema({
  1. int? x,
  2. int? y,
  3. int? mapId,
})

Returns a new DestinationSchema instance.

Implementation

DestinationSchema({
  this.x,
  this.y,
  this.mapId,
});