querySchema method Null safety
- String q
This function takes a string,
q
, and returns aFuture<QueryWhatIsResponse?>
Args: q (String): The query string.
Implementation
Future<QueryWhatIsResponse?> querySchema(String q) async {
return await MotorFlutterPlatform.instance.querySchema(QueryWhatIsRequest(did: q));
}