RenderConfigMessage constructor

RenderConfigMessage({
  1. double? width,
  2. double? height,
  3. required double marginLeft,
  4. required double marginTop,
  5. required double marginRight,
  6. required double marginBottom,
  7. required double devicePixelRatio,
  8. required int assetLoadTimeoutMs,
  9. required bool continuousMode,
  10. String? baseUrl,
  11. String? postLoadScript,
})

Implementation

RenderConfigMessage({
  this.width,
  this.height,
  required this.marginLeft,
  required this.marginTop,
  required this.marginRight,
  required this.marginBottom,
  required this.devicePixelRatio,
  required this.assetLoadTimeoutMs,
  required this.continuousMode,
  this.baseUrl,
  this.postLoadScript,
});