InputPhotoFileLocation constructor

const InputPhotoFileLocation({
  1. required int id,
  2. required int accessHash,
  3. required Uint8List fileReference,
  4. required String thumbSize,
})

Input Photo File Location constructor.

Implementation

const InputPhotoFileLocation({
  required this.id,
  required this.accessHash,
  required this.fileReference,
  required this.thumbSize,
}) : super._();