getDataTimestamp method

  1. @override
Future<int?> getDataTimestamp(
  1. Tile tile
)
override

Returns the creation timestamp of the map file.

@param tile not used, as all tiles will shared the same creation date. @return the creation timestamp inside the map file.

Implementation

@override
Future<int?> getDataTimestamp(Tile tile) {
  return Future.value(this.timestamp);
}