InAppWebViewRect constructor

InAppWebViewRect({
  1. required double x,
  2. required double y,
  3. required double width,
  4. required double height,
})

Implementation

InAppWebViewRect({
  required this.x,
  required this.y,
  required this.width,
  required this.height,
}) {
  assert(this.width >= 0 && this.height >= 0);
}