SystemWindowButton constructor

SystemWindowButton({
  1. required SystemWindowText text,
  2. required String tag,
  3. SystemWindowPadding? padding,
  4. SystemWindowMargin? margin,
  5. int? width,
  6. int? height,
  7. SystemWindowDecoration? decoration,
})

Implementation

SystemWindowButton({
  required this.text,
  required this.tag,
  this.padding,
  this.margin,
  this.width,
  this.height,
  this.decoration,
});