DocumentMessageStyle constructor

const DocumentMessageStyle({
  1. Color attachmentIconColor = Colors.white,
  2. TextStyle textStyle = const TextStyle(color: Colors.white, fontSize: 14),
  3. Color copyIconColor = Colors.white70,
  4. Color downloadIconColor = Colors.white,
})

Implementation

const DocumentMessageStyle({
  this.attachmentIconColor = Colors.white,
  this.textStyle = const TextStyle(
    color: Colors.white,
    fontSize: 14,
  ),
  this.copyIconColor = Colors.white70,
  this.downloadIconColor = Colors.white,
});