BaseApiBusinessException constructor

const BaseApiBusinessException({
  1. required String message,
  2. @JsonKey(fromJson: null, toJson: null, includeFromJson: false, includeToJson: false) Object? error,
  3. @JsonKey(fromJson: null, toJson: null, includeFromJson: false, includeToJson: false) StackTrace? stackTrace,
})

Implementation

const factory BaseApiBusinessException(
    {required final String message,
    @JsonKey(
        fromJson: null,
        toJson: null,
        includeFromJson: false,
        includeToJson: false)
    final Object? error,
    @JsonKey(
        fromJson: null,
        toJson: null,
        includeFromJson: false,
        includeToJson: false)
    final StackTrace? stackTrace}) = _$BaseApiBusinessExceptionImpl;