clone method
Creates a copy of this TModel.
For example:
var myModel2 = myModel1.clone();
Implementation
@override
FastInAppPurchase clone() {
return FastInAppPurchase(productId: productId, enabled: enabled);
}
Creates a copy of this TModel.
For example:
var myModel2 = myModel1.clone();
@override
FastInAppPurchase clone() {
return FastInAppPurchase(productId: productId, enabled: enabled);
}