runNotifierBuild method
- covariant ProofList notifier
override
Runs the build method of a notifier.
This is an implementation detail for differentiating Notifier.build from FamilyNotifier.build.
Implementation
@override
List<Proof> runNotifierBuild(
covariant ProofList notifier,
) {
return notifier.build(
workerId: workerId,
contractId: contractId,
date: date,
serviceId: serviceId,
worker: worker,
client: client,
service: service,
);
}