getHeatmapInfo method

Future<Heatmap?> getHeatmapInfo(
  1. HeatmapId heatmapId, {
  2. required int mapId,
})

Returns information about the heatmap with the given ID.

The returned object will be synthesized from platform data, so will not be the same Dart object as the original Heatmap provided to the platform interface with that ID, and not all fields will be populated.

Implementation

Future<Heatmap?> getHeatmapInfo(HeatmapId heatmapId, {required int mapId}) {
  throw UnimplementedError('getHeatmapInfo() has not been implemented.');
}