isInitialized method

  1. @override
Future<bool> isInitialized()
override

Checks whether the Mapxus SDK has been initialized successfully.

Returns true if initialized, otherwise false.

Implementation

@override
Future<bool> isInitialized() async {
  return await _channel.invokeMethod('isInitialized');
}