UserSpaceBillingApiException constructor

UserSpaceBillingApiException({
  1. required String message,
  2. int? httpStatusCode,
  3. Exception? innerException,
  4. StackTrace? innerStackTrace,
  5. dynamic log = kDebugMode,
})

Implementation

UserSpaceBillingApiException({
  required String super.message,
  this.httpStatusCode,
  super.innerException,
  super.innerStackTrace,
  super.log = kDebugMode,
}) : super(
        stackTrace: StackTrace.current,
      );