NetworkResponse constructor
NetworkResponse({
- required bool status,
- required int responseCode,
- String? responseTitle,
- dynamic responseBody,
- bool isCancelable = true,
- bool callDefaults = true,
- bool handleErrors = true,
- bool handleSuccess = true,
- dynamic retryFunction(
- bool force,
- NetworkResponse res
- dynamic responseDetails,
- String? extractedMessage,
Implementation
NetworkResponse(
{required this.status,
required this.responseCode,
this.responseTitle,
this.responseBody,
this.isCancelable = true,
this.callDefaults = true,
this.handleErrors = true,
this.handleSuccess = true,
this.retryFunction,
this.responseDetails,
this.extractedMessage});