CameraRect constructor
Default constructor for CameraRect.
left <= right and top <= bottom
Implementation
CameraRect({
required this.top,
required this.bottom,
required this.right,
required this.left,
}) {
_channel.$create$(
this,
$owner: true,
top: top,
bottom: bottom,
right: right,
left: left,
);
}