show static method

void show(
  1. String message, {
  2. ComToastConfig? config,
  3. bool skipDuplicateFilter = false,
})

显示普通 Toast

Implementation

static void show(String message,
    {ComToastConfig? config, bool skipDuplicateFilter = false}) {
  _toastManager.show(message,
      config: config, skipDuplicateFilter: skipDuplicateFilter);
}