showLoading static method

Function showLoading({
  1. required String text,
  2. FLToastPosition? position,
  3. FLToastStyle? style,
})

Implementation

static Function showLoading(
        {required String text, FLToastPosition? position, FLToastStyle? style}) =>
    _showToast(text,
        position: position, style: style, type: _FLToastType.loading);