pushMethodProp method

void pushMethodProp(
  1. String name,
  2. ControllerMethodProp? prop
)

Implementation

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