CoinGeckoResult<T> constructor

CoinGeckoResult<T>(
  1. T data, {
  2. bool isError = false,
  3. String? errorMessage,
  4. int? errorCode,
})

Implementation

CoinGeckoResult(
  this.data, {
  this.isError = false,
  this.errorMessage,
  this.errorCode,
});