isShieldInitialized property
Implementation
static Future<bool> get isShieldInitialized async {
try {
return await _channel.invokeMethod("isShieldInitialized") ?? false;
} catch (e, s) {
_internalLog("isShieldInitialized failed", e, s);
return false;
}
}