getValue method

ToastMeta getValue()

Implementation

ToastMeta getValue() {
  switch (_style) {
    case ToastNotificationStyleType.SUCCESS:
      return onSuccess();
    case ToastNotificationStyleType.WARNING:
      return onWarning();
    case ToastNotificationStyleType.INFO:
      return onInfo();
    case ToastNotificationStyleType.DANGER:
      return onDanger();
    default:
      return onSuccess();
  }
}