minzoom property
Minimum zoom level for which tiles are available, as in the TileJSON spec.
Implementation
Future<double?> get minzoom async {
return _style?.getStyleSourceProperty(id, "minzoom").then((value) {
if (value.value != '<null>') {
return double.parse(value.value);
} else {
return null;
}
});
}