getChain method

Future<MixinResponse<Chain>> getChain(
  1. String chainId
)

Implementation

Future<MixinResponse<Chain>> getChain(String chainId) =>
    MixinResponse.request<Chain>(
      dio.get('/network/chains/$chainId'),
      Chain.fromJson,
    );