color method

Color color()

Implementation

Color color() {
  switch (this) {
    case NotificationType.success:
      return successColor;
    case NotificationType.error:
      return errorColor;
    case NotificationType.info:
      return inforColor;
    default:
      return Colors.blue;
  }
}