TileID.fromJson constructor

TileID.fromJson(
  1. Map<String, dynamic> json
)

Implementation

TileID.fromJson(Map<String, dynamic> json)
  : x = json['x'] as int,
    y = json['y'] as int,
    z = json['z'] as int;