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