GetFile constructor

GetFile({
  1. required String path,
  2. String? name,
  3. int? size,
})

Implementation

GetFile({
  required this.path,
  String? name,
  int? size,
})  : _name = name,
      _size = size;