NMResponse constructor

NMResponse({
  1. dynamic data,
  2. bool? isSucceed,
  3. String? responseBody,
  4. int? responseCode,
  5. String? responseTitle,
  6. Function? retryFunction,
})

Implementation

NMResponse(
    {this.data,
      this.isSucceed,
      this.responseBody,
      this.responseCode,
      this.responseTitle,
      this.retryFunction});