NativeContentStyle constructor

const NativeContentStyle({
  1. Color titleColor = const Color(0xFFFFFFFF),
  2. double titleFontSize = 18.0,
  3. Color textColor = const Color(0xB3FFFFFF),
  4. double contentFontSize = 14.0,
})

Creates a NativeContentStyle instance.

Implementation

const NativeContentStyle({
  this.titleColor = const Color(0xFFFFFFFF),
  this.titleFontSize = 18.0,
  this.textColor = const Color(0xB3FFFFFF), // White70
  this.contentFontSize = 14.0,
});