ClockInResult constructor

ClockInResult({
  1. String? image,
  2. DateTime? clockInTime,
  3. bool isLate = false,
  4. double? latitude,
  5. double? longitude,
  6. LivenessException? exception,
})

Implementation

ClockInResult({
  this.image,
  this.clockInTime,
  this.isLate = false,
  this.latitude,
  this.longitude,
  this.exception,
});