TakePhotoDocumentStyle constructor

const TakePhotoDocumentStyle({
  1. Widget onLoading = const Center(child: CircularProgressIndicator()),
  2. List<Widget>? children,
  3. double top = 0,
  4. double bottom = 0,
  5. double left = 0,
  6. double right = 0,
  7. bool hideDefaultButtonTakePicture = false,
})

Create a instance of TakePhotoDocumentStyle.

Implementation

const TakePhotoDocumentStyle({
  this.onLoading = const Center(
    child: CircularProgressIndicator(),
  ),
  this.children,
  this.top = 0,
  this.bottom = 0,
  this.left = 0,
  this.right = 0,
  this.hideDefaultButtonTakePicture = false,
});