isSnapchatInstalled property

Future<bool> isSnapchatInstalled

isSnapchatInstalled returns a bool of whether or not the Snapchat app is installed on the user's phone.

Implementation

Future<bool> get isSnapchatInstalled async {
  bool isInstalled;
  isInstalled = await _channel.invokeMethod('isInstalled');
  return isInstalled;
}