checkInstaInstalled static method

Future<bool> checkInstaInstalled()

Implementation

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