checkFBInstalled static method

Future<bool> checkFBInstalled()

Implementation

static Future<bool> checkFBInstalled() async {
  final check = await _channel.invokeMethod('check_FB');
  if (check == null) {
    throw Exception("Platform error");
  }
  return check;
}