NotifyCard.warning constructor

NotifyCard.warning({
  1. required String text,
})

Implementation

factory NotifyCard.warning({
  required String text,
}) =>
    NotifyCard(
      primaryColor: TWColors.yellow.shade500,
      text: text,
      svgIcon: Assets.svg_warning_fill,
    );