show static method

void show([
  1. String? text
])

Implementation

static void show([String? text]) {
  EasyLoading.instance.userInteractions = false; // 屏蔽交互操作
  EasyLoading.show(status: text ?? '加载中...');
}