StreamInfoTile constructor

const StreamInfoTile({
  1. Key? key,
  2. required String message,
  3. required Widget child,
  4. required bool showMessage,
  5. Alignment? tileAnchor,
  6. Alignment? childAnchor,
  7. TextStyle? textStyle,
  8. Color? backgroundColor,
})

Displays a message. Often used to display connection status.

Implementation

const StreamInfoTile({
  super.key,
  required this.message,
  required this.child,
  required this.showMessage,
  this.tileAnchor,
  this.childAnchor,
  this.textStyle,
  this.backgroundColor,
});