errorGlobal static method

void errorGlobal({
  1. required String message,
  2. String? title,
})

Implementation

static void errorGlobal({required String message, String? title}) {
  showGlobal(message: message, title: title, type: FUIToastType.error);
}