showInfo static method

void showInfo(
  1. String message
)

显示全局信息提示

message 信息内容

用法示例

PPAlert.showInfo("记录已同步");

Implementation

static void showInfo(String message) {
  EasyLoading.showInfo(message);
}