enableLiveData method

Future<void> enableLiveData(
  1. String domainType, [
  2. OnLiveLocationUpdateListener? listener
])

Enables live data on a specific domain and uses MapsIndoors standard graphic implementation

Uses a domainType string, use LiveDataDomainTypes to get supported strings

Implementation

Future<void> enableLiveData(String domainType,
    [OnLiveLocationUpdateListener? listener]) {
  return MapcontrolPlatform.instance.enableLiveData(domainType, listener);
}