NIMResult<T> constructor

NIMResult<T>(
  1. int code,
  2. T? data,
  3. String? errorDetails
)

Implementation

NIMResult(this.code, this.data, this.errorDetails);