ReflectedApiClient<T> constructor

ReflectedApiClient<T>(
  1. JsonRpcHttpClient _client, [
  2. List<Type>? types
])

Implementation

ReflectedApiClient(this._client, [List<Type>? types]) {
  _registerType(T);
  types?.forEach(_registerType);
}