getSnapshotById method

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

Implementation

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