TokenBanner constructor

const TokenBanner({
  1. Key? key,
  2. VoidCallback? onRefresh,
  3. String? message,
  4. String? buttonText,
  5. Color? backgroundColor,
  6. Color? textColor,
})

Implementation

const TokenBanner({
  super.key,
  this.onRefresh,
  this.message,
  this.buttonText,
  this.backgroundColor,
  this.textColor,
});