NativeTextStyle constructor

const NativeTextStyle({
  1. required double fontSize,
  2. required Color color,
  3. required Color backgroundColor,
  4. bool isVisible = true,
})

Implementation

const NativeTextStyle({
  required this.fontSize,
  required this.color,
  required this.backgroundColor,
  this.isVisible = true,
});