ServiceExtensionResponse.error 构造函数
创建一个服务协议扩展 RPC 的错误响应。
要求 errorCode
为 invalidParams 或介于 extensionErrorMin 和 extensionErrorMax 之间。要求 errorDetail
为一个作为字符串编码的 JSON 对象。当构建 JSON-RPC 消息时,errorDetail
将直接内联。
实现
ServiceExtensionResponse.error(int errorCode, String errorDetail)
: result = null,
errorCode = errorCode,
errorDetail = errorDetail {
_validateErrorCode(errorCode);
// TODO: When NNBD is complete, delete the following line.
checkNotNullable(errorDetail, "errorDetail");
}