getStyleError method

Future<String?> getStyleError({
  1. required int mapId,
})

If the last attempt to set the style via MapConfiguration.style failed, returns the error information, otherwise returns null.

Implementation

Future<String?> getStyleError({required int mapId}) async {
  return null;
}