DiffReviewLoadMsg constructor
DiffReviewLoadMsg({
- required String documentId,
- required String revision,
- required GitDiffModel diff,
- Iterable<
DiffReviewThread> threads = const [],
Loads a patch and its thread descriptors as one update.
Implementation
DiffReviewLoadMsg({
required this.documentId,
required this.revision,
required this.diff,
Iterable<DiffReviewThread> threads = const [],
}) : threads = List.unmodifiable(threads);