checkForDangerousProps property

Future<bool?> checkForDangerousProps

Implementation

static Future<bool?> get checkForDangerousProps async {
  try {
    final bool? result =
        await _channel.invokeMethod('checkForDangerousProps');
    return result;
  } catch (error) {
    return null;
  }
}