sanityCheck function

Future<bool> sanityCheck()

Performs the C0 (Complexity-0) check to make sure the platform for the current device is up and running.

Implementation

Future<bool> sanityCheck() async {
  return (await BasicNativeChannel.safeInvokeBool(mNativeChannel1, "DoesExist")).isGood;
}