getIsBootstrapped method

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

Whether identify() (or the deprecated bootstrap()) has completed.

Implementation

@override
Future<bool> getIsBootstrapped() async {
  final result = await methodChannel.invokeMethod<bool>('getIsBootstrapped');
  return result ?? false;
}