getChange method

Future<SnapdChange> getChange(
  1. String id
)

Gets the status the change with the given id.

Implementation

Future<SnapdChange> getChange(String id) async {
  var result = await _getSync('/v2/changes/$id');
  return SnapdChange.fromJson(result);
}