getSnapshotById method

Future<MixinResponse<Snapshot>> getSnapshotById(
  1. String id
)

Implementation

Future<MixinResponse<Snapshot>> getSnapshotById(String id) =>
    MixinResponse.request<Snapshot>(
      dio.get('/snapshots/$id'),
      Snapshot.fromJson,
    );