copyWith method

GoogleErrorResponse copyWith({
  1. ErrorInfo? error,
})

Implementation

GoogleErrorResponse copyWith({ErrorInfo? error}) {
  return GoogleErrorResponse(error: error ?? this.error);
}