Proof constructor
- ProofList proofList,
- {String? name,
- ProofEntry? before,
- ProofEntry? after}
Implementation
Proof(this.proofList, {this.name, ProofEntry? before, ProofEntry? after})
: after = after ?? ProofEntry(),
before = before ?? ProofEntry() {
_updateEntries();
}