getDataTimestamp method
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);
}