CameraRect.withoutCreate constructor

  1. @ReferenceConstructor(ignore: true)
CameraRect.withoutCreate({
  1. required int top,
  2. required int bottom,
  3. required int right,
  4. required int left,
})

Construct a CameraArea without creating the paired Java object.

This should only be used when creating a custom type channel implementation of this class.

Implementation

@ReferenceConstructor(ignore: true)
CameraRect.withoutCreate({
  required this.top,
  required this.bottom,
  required this.right,
  required this.left,
});