DocumentItemStyle constructor

const DocumentItemStyle({
  1. TextStyle titleTextStyle = const TextStyle(fontWeight: FontWeight.normal, color: Color(0xff181818), fontSize: 12),
  2. TextStyle sizeTextStyle = const TextStyle(fontWeight: FontWeight.w300, color: Color(0xff757575), fontSize: 10),
  3. TextStyle dateTextStyle = const TextStyle(fontWeight: FontWeight.w300, color: Color(0xff757575), fontSize: 10),
  4. Color dividerColor = const Color(0xffFAFAFA),
})

Implementation

const DocumentItemStyle(
    {this.titleTextStyle = const TextStyle(
        fontWeight: FontWeight.normal,
        color: Color(0xff181818),
        fontSize: 12),
    this.sizeTextStyle = const TextStyle(
        fontWeight: FontWeight.w300, color: Color(0xff757575), fontSize: 10),
    this.dateTextStyle = const TextStyle(
        fontWeight: FontWeight.w300, color: Color(0xff757575), fontSize: 10),
    this.dividerColor = const Color(0xffFAFAFA)});