query method
Query on ContentType This call returns comprehensive information of all the content types available in a particular stack in your account
Example:
final contentTypeQuery = stack.contentType().query();
final response = contentTypeQuery.find();
print(response);
Implementation
ContentTypeQuery query() {
return ContentTypeQuery(_client);
}