loading method
Implementation
Future<T?> loading(
BuildContext context, {
Curve? curve,
bool? dismissible,
Color? barrierColor,
Curve? reverseCurve,
Stream<String>? hintStream,
LoadingOverlayStyle? style,
Stream<double>? progressStream,
bool cancelWithAnime = false,
}) => Loading.show(
context,
curve: curve,
loadFuture: this,
style: style,
hintStream: hintStream,
dismissible: dismissible,
reverseCurve: reverseCurve,
barrierColor: barrierColor,
progressStream: progressStream,
cancelWithAnime: cancelWithAnime,
);