LivelinessImage constructor

LivelinessImage({
  1. required String direction,
  2. Uint8List? bytes,
  3. required File img,
})

Implementation

LivelinessImage({
  required this.direction,
  this.bytes,
  required this.img,
});