WebCameraPage constructor

const WebCameraPage({
  1. Key? key,
  2. required dynamic onPictureTaken(
    1. String
    ),
  3. required dynamic onCancel(),
  4. String? appBarTitle,
  5. bool? centerTitle,
})

Implementation

const WebCameraPage({
  super.key,
  required this.onPictureTaken,
  required this.onCancel,
  this.appBarTitle,
  this.centerTitle,
});