PatchbaySnapshotDiffRequest constructor

PatchbaySnapshotDiffRequest({
  1. required int fromRevision,
})

Implementation

PatchbaySnapshotDiffRequest({required this.fromRevision}) {
  if (fromRevision <= 0) {
    throw const FormatException('fromRevision must be positive');
  }
}