clone method
Creates a copy of this TModel.
For example:
var myModel2 = myModel1.clone();
Implementation
@override
FastCategory clone() {
return FastCategory(
labelText: labelText,
valueText: valueText,
weight: weight,
);
}
Creates a copy of this TModel.
For example:
var myModel2 = myModel1.clone();
@override
FastCategory clone() {
return FastCategory(
labelText: labelText,
valueText: valueText,
weight: weight,
);
}