pushMethodProp method
Implementation
void pushMethodProp(String name, ControllerMethodProp? prop) {
if (prop == null) {
throw ArgumentError("push render method prop error , prop is null");
}
_renderMethodMap[name] = prop;
}
void pushMethodProp(String name, ControllerMethodProp? prop) {
if (prop == null) {
throw ArgumentError("push render method prop error , prop is null");
}
_renderMethodMap[name] = prop;
}