GenericDesktopMonitorFramePainter constructor

const GenericDesktopMonitorFramePainter({
  1. required TargetPlatform platform,
  2. required Rect windowPosition,
  3. Color outerBodyColor = defaultOuterBodyColor,
  4. Color innerBodyColor = defaultInnerBodyColor,
  5. Radius outerBodyRadius = defaultOuterBodyRadius,
  6. Radius innerBodyRadius = defaultInnerBodyRadius,
  7. EdgeInsets innerBodyInsets = defaultInnerBodyInsets,
  8. EdgeInsets screenInsets = defaultScreenInsets,
  9. Radius screenRadius = defaultScreenRadius,
  10. Size footSize = defaultFootSize,
  11. double footBarWidth = defaultFootBarWidth,
  12. double footBaseHeight = defaultFootBaseHeight,
  13. Radius windowRadius = defaultWindowRadius,
})

Implementation

const GenericDesktopMonitorFramePainter({
  required this.platform,
  required this.windowPosition,
  this.outerBodyColor = defaultOuterBodyColor,
  this.innerBodyColor = defaultInnerBodyColor,
  this.outerBodyRadius = defaultOuterBodyRadius,
  this.innerBodyRadius = defaultInnerBodyRadius,
  this.innerBodyInsets = defaultInnerBodyInsets,
  this.screenInsets = defaultScreenInsets,
  this.screenRadius = defaultScreenRadius,
  this.footSize = defaultFootSize,
  this.footBarWidth = defaultFootBarWidth,
  this.footBaseHeight = defaultFootBaseHeight,
  this.windowRadius = defaultWindowRadius,
});