isAvailable property Null safety

Future<bool> isAvailable

Reflects availability of the device for the Nearby search

Implementation

Future<bool> get isAvailable async {
  return _invokeSdkMethod(SdkMethod.isAvailable).then((value) {
    return deserializeAvailability(value);
  });
}