getTrace method

Future<MixinResponse<SafeSnapshot>> getTrace(
  1. String traceId
)

Implementation

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