getBundleHistory method
- String bundleKref
inherited
Gets the membership history of a bundle.
Returns a chronological list of all membership changes (additions and removals) with audit information.
Implementation
Future<GetBundleHistoryResponse> getBundleHistory(String bundleKref) async {
final request = GetBundleHistoryRequest()..bundleKref = Kref(uri: bundleKref);
return stub.getBundleHistory(request, options: callOptions);
}