BloomUpdateBanner constructor

const BloomUpdateBanner({
  1. Key? key,
  2. Widget? icon,
  3. String readyMessage = 'A new update is ready! Restart to apply changes.',
  4. String restartButtonText = 'RESTART NOW',
})

Creates a BloomUpdateBanner.

Implementation

const BloomUpdateBanner({
  super.key,
  this.icon,
  this.readyMessage = 'A new update is ready! Restart to apply changes.',
  this.restartButtonText = 'RESTART NOW',
});