copyWith method

FileDownloadedPrefixSize copyWith({
  1. int? size,
  2. dynamic extra,
  3. int? clientId,
})

Implementation

FileDownloadedPrefixSize copyWith({
  int? size,
  dynamic extra,
  int? clientId,
}) =>
    FileDownloadedPrefixSize(
      size: size ?? this.size,
      extra: extra ?? this.extra,
      clientId: clientId ?? this.clientId,
    );