BungieNetResponse<T> constructor

BungieNetResponse<T>({
  1. T? response,
  2. PlatformErrorCodes? errorCode,
  3. int? throttleSeconds,
  4. String? errorStatus,
  5. String? message,
  6. Map<String, String>? messageData,
  7. String? detailedErrorTrace,
})

Implementation

BungieNetResponse({
  this.response,
  this.errorCode,
  this.throttleSeconds,
  this.errorStatus,
  this.message,
  this.messageData,
  this.detailedErrorTrace,
});