queryBucket method Null safety
- String q
This function takes a string, and returns a future that will eventually contain a QueryWhereIsResponse object, or null
Args: q (String): The query string.
Implementation
Future<QueryWhereIsResponse?> queryBucket(String q) async {
return await MotorFlutterPlatform.instance.queryBucket(QueryWhereIsRequest(did: q));
}