show method

LoadingScreenHandler show({
  1. String? text,
})

Implementation

LoadingScreenHandler show({
  String? text,
}) {
  return showLoadingScreen(
    globalKey.currentContext!,
    text: text,
    color: color,
  );
}