stylePackMetadata method

Future<Map<String, Object>> stylePackMetadata(
  1. String styleURI
)

Returns a style package's associated metadata.

@param styleURI: The URI of the style package's associated style

Implementation

Future<Map<String, Object>> stylePackMetadata(String styleURI) async {
  return _api.stylePackMetadata(styleURI).then((value) => Map.from(value));
}