showWarning method

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

Implementation

void showWarning(String message, {String? title}) {
  state = state.copyWith(
    message: message,
    title: title,
    type: NotificationType.warning,
    hasNotification: true,
  );
}