copyWith method

Digest copyWith({
  1. int? size,
  2. Uint8List? bytes,
})

Implementation

Digest copyWith({
  int? size,
  Uint8List? bytes,
}) {
  return Digest(
    size ?? this.size,
    bytes ?? this.bytes,
  );
}