MessageInformationStyle constructor

const MessageInformationStyle({
  1. double? width,
  2. double? height,
  3. Color? background,
  4. BoxBorder? border,
  5. double? borderRadius,
  6. Gradient? gradient,
  7. TextStyle? titleStyle,
  8. Color? closeIconTint,
  9. Color? deliveredIconTint,
  10. Color? dividerTint,
  11. Color? readIconTint,
  12. TextStyle? subTitleStyle,
  13. TextStyle? emptyTextStyle,
  14. TextStyle? errorTextStyle,
  15. Color? loadingIconTint,
})

Implementation

const MessageInformationStyle({
  super.width,
  super.height,
  super.background,
  super.border,
  super.borderRadius,
  super.gradient,
  this.titleStyle,
  this.closeIconTint,
  this.deliveredIconTint,
  this.dividerTint,
  this.readIconTint,
  this.subTitleStyle,
  this.emptyTextStyle,
  this.errorTextStyle,
  this.loadingIconTint,
});