StateMessageBuilder constructor

const StateMessageBuilder({
  1. Key? key,
  2. String? title,
  3. Color? txtColor,
  4. TextAlign? textAlign,
})

Implementation

const StateMessageBuilder({
  super.key,
  this.title,
  this.txtColor,
  this.textAlign,
});