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();
  }
}