ApiContractResponse constructor

ApiContractResponse({
  1. String? continuationToken,
  2. ApiContractResponseError? error,
  3. ApiContractResponseResult? result,
})

Implementation

ApiContractResponse({
  this.continuationToken,
  this.error,
  this.result,
});