NomoNotificationThemeData constructor

const NomoNotificationThemeData({
  1. Color? backgroundColor = null,
  2. Color? foregroundColor = null,
  3. EdgeInsetsGeometry padding = const EdgeInsets.all(16),
  4. BorderRadius borderRadius = const BorderRadius.all(Radius.circular(16)),
  5. double spacing = 16.0,
  6. double maxWidth = double.infinity,
})

Implementation

const NomoNotificationThemeData({
  this.backgroundColor = null,
  this.foregroundColor = null,
  this.padding = const EdgeInsets.all(16),
  this.borderRadius = const BorderRadius.all(Radius.circular(16)),
  this.spacing = 16.0,
  this.maxWidth = double.infinity,
});