HVFaceCapturePadding constructor

HVFaceCapturePadding({
  1. double left = 0.0,
  2. double top = 0.0,
  3. double right = 0.0,
  4. double bottom = 0.0,
})

Creates an instance of HVFaceCapturePadding with the specified padding values.

left is the amount of padding on the left side. top is the amount of padding on the top side. right is the amount of padding on the right side. bottom is the amount of padding on the bottom side.

Implementation

HVFaceCapturePadding({
  this.left = 0.0,
  this.top = 0.0,
  this.right = 0.0,
  this.bottom = 0.0,
});