BloomRpcPathParameterException constructor

BloomRpcPathParameterException({
  1. required String paramName,
  2. required String pathTemplate,
  3. required String method,
  4. BloomRpcContract? contract,
  5. 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';