show static method

void show([
  1. String? message
])

Implementation

static void show([String? message]) {
  log("GlobalLoading:: show: $message");
  EventBus.sendEvent(Event(key: eventKey, data: LoadingMsg.show(message ?? '加载中...')));
}