addItem method
添加元素到map中
key
元素key
value
元素value
Implementation
Map<M, T>? addItem(M key, T value) {
if (key == null || value == null) {
return this;
}
this?[key] = value;
return this;
}
添加元素到map中
key
元素key
value
元素value
Map<M, T>? addItem(M key, T value) {
if (key == null || value == null) {
return this;
}
this?[key] = value;
return this;
}