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