copyWith method
- SessionDigest? digest,
- bool? isGenerating,
- String? error,
Implementation
SessionDigestState copyWith({
SessionDigest? digest,
bool? isGenerating,
String? error,
}) => SessionDigestState(
digest: digest ?? this.digest,
isGenerating: isGenerating ?? this.isGenerating,
error: error,
);