info static method

void info(
  1. String message, {
  2. Key? key,
  3. FastNotificationCenterOptions options = _kDefaultInfoOptions,
})

Displays an info notification.

Implementation

static void info(
  String message, {
  Key? key,
  FastNotificationCenterOptions options = _kDefaultInfoOptions,
}) {
  final palette = ThemeHelper.getPaletteColors(_context);

  _buildNotification(
    message,
    options: _mergeIconColors(options, palette.blueGray.mid),
  );
}