BcException constructor

const BcException({
  1. required int code,
  2. required String message,
  3. double? requestedDistanceFt,
  4. double? maxRangeFt,
  5. double? lookAngleRad,
  6. double? zeroFindingError,
  7. double? lastBarrelElevationRad,
  8. int? iterationsCount,
})

Implementation

const BcException({
  required this.code,
  required this.message,
  this.requestedDistanceFt,
  this.maxRangeFt,
  this.lookAngleRad,
  this.zeroFindingError,
  this.lastBarrelElevationRad,
  this.iterationsCount,
});