SystemWindowText constructor

SystemWindowText({
  1. required String text,
  2. double fontSize = 14.0,
  3. FontWeight? fontWeight,
  4. Color? textColor,
  5. SystemWindowPadding? padding,
})

Implementation

SystemWindowText({
  required this.text,
  this.fontSize = 14.0,
  this.fontWeight,
  this.textColor,
  this.padding,
});