querySchemaByCreator method Null safety
- String creator
It queries the schema by creator.
Args: creator (String): The creator of the schema.
Implementation
Future<QueryWhatIsByCreatorResponse?> querySchemaByCreator(String creator) async {
return await MotorFlutterPlatform.instance.querySchemaByCreator(QueryWhatIsByCreatorRequest(creator: creator));
}