MessageAndIndicator constructor

const MessageAndIndicator({
  1. required String? message,
  2. required Widget indicator,
  3. TextStyle? textStyle,
  4. TextAlign? textAlign,
  5. double? verticalGap,
  6. VisualDensity? visualDensity,
  7. Color? foregroundColor,
  8. Key? key,
})

Implementation

const MessageAndIndicator({
  required this.message,
  required this.indicator,
  this.textStyle,
  this.textAlign,
  this.verticalGap,
  this.visualDensity,
  this.foregroundColor,
  super.key,
});