isQueryMethod function
Implementation
bool isQueryMethod(MethodElement method) {
if (method.metadata.length == 0) {
return false;
}
var annotation = getAnnotation(method, Query);
return annotation != null;
}
bool isQueryMethod(MethodElement method) {
if (method.metadata.length == 0) {
return false;
}
var annotation = getAnnotation(method, Query);
return annotation != null;
}