getIsBootstrapped method
Whether identify() (or the deprecated bootstrap()) has completed.
Implementation
@override
Future<bool> getIsBootstrapped() async {
final result = await methodChannel.invokeMethod<bool>('getIsBootstrapped');
return result ?? false;
}