checkSuExists property

Future<bool?> checkSuExists

Check if SU is exists

Implementation

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