copyWith<T> method

Response<T> copyWith<T>(
  1. {Response response,
  2. T body}
)

Implementation

Response<T> copyWith<T>({dio.Response response, T body}) =>
    Response(response ?? this.response, body ?? this.body);