File tree 4 files changed +4
-4
lines changed
tron/src/provider/service
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ mixin BlockFrostServiceProvider
6
6
implements BaseServiceProvider <BlockFrostRequestDetails > {
7
7
/// Example:
8
8
/// @override
9
- /// Future<BlockFrostServiceResponse<T>> doRequest<T >(BlockFrostRequestDetails params,
9
+ /// Future<` BlockFrostServiceResponse<T>` > doRequest<`T` >(BlockFrostRequestDetails params,
10
10
/// {Duration? timeout}) async {
11
11
/// final response = await client
12
12
/// .post(params.toUri(url), headers: params.headers, body: params.body())
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ mixin EthereumServiceProvider
9
9
implements BaseServiceProvider <EthereumRequestDetails > {
10
10
/// Example:
11
11
/// @override
12
- /// Future<EthereumServiceResponse<T> > doRequest<T >(EthereumRequestDetails params,
12
+ /// Future<` EthereumServiceResponse<` T `>` > doRequest<`T` >(EthereumRequestDetails params,
13
13
/// {Duration? timeout}) async {
14
14
/// final response = await client
15
15
/// .post(params.toUri(url), headers: params.headers, body: params.body())
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ mixin SolanaServiceProvider
9
9
implements BaseServiceProvider <SolanaRequestDetails > {
10
10
/// Example:
11
11
/// @override
12
- /// Future<SolanaServiceResponse<T>> doRequest<T >(SolanaRequestDetails params,
12
+ /// Future<` SolanaServiceResponse<T>` > doRequest<`T` >(SolanaRequestDetails params,
13
13
/// {Duration? timeout}) async {
14
14
/// final response = await client
15
15
/// .post(params.toUri(url), headers: params.headers, body: params.body())
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ typedef TronServiceResponse<T> = BaseServiceResponse<T>;
7
7
mixin TronServiceProvider implements BaseServiceProvider <TronRequestDetails > {
8
8
/// Example:
9
9
/// @override
10
- /// Future<TronServiceResponse<T>> doRequest<T >(TronRequestDetails params,
10
+ /// Future<` TronServiceResponse<T>` > doRequest<`T` >(TronRequestDetails params,
11
11
/// {Duration? timeout}) async {
12
12
/// final response = await client
13
13
/// .post(params.toUri(url), headers: params.headers, body: params.body())
You can’t perform that action at this time.
0 commit comments