BloomRpcPathParameterException constructor
BloomRpcPathParameterException({
- required String paramName,
- required String pathTemplate,
- required String method,
- BloomRpcContract? contract,
- Uri? uri,
Creates a BloomRpcPathParameterException naming the missing paramName.
Implementation
BloomRpcPathParameterException({
required this.paramName,
required this.pathTemplate,
required this.method,
this.contract,
this.uri,
}) : message =
'Missing required path parameter ":$paramName" for endpoint $method $pathTemplate';