SystemWindowImageButton constructor

SystemWindowImageButton({
  1. required Uint8List image,
  2. double? size,
  3. SystemWindowPadding? padding,
  4. String? tag,
  5. int? width,
  6. int? height,
})

Implementation

SystemWindowImageButton(
    {required this.image,
    this.size,
    this.padding,
    this.tag,
    this.width,
    this.height})
    : assert(image != null);