ScreenShotHelperModel constructor

ScreenShotHelperModel({
  1. String? savedImagePath,
  2. String? errorReason,
  3. PermissionsResultsEnums? permissionsResultsEnum,
  4. required bool saveSuccess,
})

helper model class for screen shot response callback holds the information about the screen shot being captured, permissions, path etc savedImagePath for image path where the screen shot image is saved errorReason reason string for any error that occurred permissionsResultsEnum permission results saveSuccess true | false about the screen shot save success | failure

Implementation

ScreenShotHelperModel(
    {this.savedImagePath,
    this.errorReason,
    this.permissionsResultsEnum,
    required this.saveSuccess});