eta property

Duration? get eta

Implementation

Duration? get eta => speed <= 0 || total <= 0 ? null : Duration(seconds: ((total - received) / speed).ceil());