InfoTile constructor

const InfoTile({
  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,
})

Constructor for creating an InfoTile widget

Implementation

const InfoTile({
  Key? key,
  required this.message,
  required this.child,
  required this.showMessage,
  this.tileAnchor,
  this.childAnchor,
  this.textStyle,
  this.backgroundColor,
}) : super(key: key);