showProgress static method

void showProgress(
  1. double progress, {
  2. String? status,
})

显示进度

Implementation

static void showProgress(double progress, {String? status}) {
  EasyLoading.showProgress(progress, status: status);
}