myCallBackFunction function

dynamic myCallBackFunction(
  1. int a,
  2. String b,
  3. dynamic c,
  4. Status s,
)

Implementation

myCallBackFunction(int a, String b, dynamic c, Status s) {
  debugPrint('At the end of the day, The call back function works');
  Get.off(() => ButtonPage());
}