get<T> method

Future<ApiResponse<T>> get<T>(
  1. Map<String, Object> params
)

Returns a value of variable with the name set by key parameter.

Implementation

Future<ApiResponse<T>> get<T>(Map<String, Object> params) =>
    _api.request<T>('storage.get', params);