secure property

Future<bool?> secure

Implementation

static Future<bool?> get secure async {
  final bool? isSecured = await _channel.invokeMethod("isSecure");
  return isSecured;
}