I have a situation that only is fixed by get.create in getx package I have the following code
class ShoppingBinding implements Bindings {
@override
void dependencies() {
Get.create<ShoppingController>(() => ShoppingController());
}
}
but I don't know how to call this thanks in advance