isAvailable property Null safety
Reflects availability of the device for the Nearby search.
Implementation
static Future<bool> get isAvailable async {
return _invokeSdkMethod<Map<Object?, Object?>>(SdkMethod.getIsAvailable)
.then((value) {
return deserializeIsAvailable(value);
});
}