EasyCompUtilsToastBuilder function

TransitionBuilder EasyCompUtilsToastBuilder()

Simple builder method to create a TransitionBuilder and for the use in MaterialApp builder method

Implementation

// ignore: non_constant_identifier_names
TransitionBuilder EasyCompUtilsToastBuilder() {
  return (context, child) {
    log("[EasyCompToast]: INIT 🚀");
    return _EasyCompUtilsToastHolder(
      child: child!,
    );
  };
}