SystemWindowText constructor

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

Implementation

SystemWindowText(
    {required this.text,
    this.fontSize,
    this.fontWeight,
    this.textColor,
    this.padding})
    : assert(text != null);