abort method
Aborts the current snapshot.
Implementation
Future<SnapshotStatus?> abort({Map<String, dynamic>? context}) async {
final id = snapshotId;
if (id == null) return null;
return _transport.abort(id, context: context);
}
Aborts the current snapshot.
Future<SnapshotStatus?> abort({Map<String, dynamic>? context}) async {
final id = snapshotId;
if (id == null) return null;
return _transport.abort(id, context: context);
}