progress property

void Function(int current, int total)? progress
getter/setter pair

Return download progress

progress: (int current, int total) {
  debugPrint('Progress: $current -- $total');
},

Implementation

void Function(int current, int total)? progress;