isAvailable property Null safety
Reflects availability of the device for the Nearby search
Implementation
Future<bool> get isAvailable async {
return _invokeSdkMethod(SdkMethod.isAvailable).then((value) {
return deserializeAvailability(value);
});
}