fromUrl static method

Future<Atlas> fromUrl(
  1. String atlasFileName
)

Implementation

static Future<Atlas> fromUrl(String atlasFileName) async {
  return _load(atlasFileName, (file) async {
    return (await http.get(Uri.parse(file))).bodyBytes;
  });
}