ifErrorTerminate method
Implementation
Future<Response<B>> ifErrorTerminate(Function(B? payload) callback, {int? specificError}) async {
var res = await this;
return res.ifError(callback, specificError: specificError).ifErrorTerminate(code: specificError);
}