AttributeLimitExceededException constructor

AttributeLimitExceededException({
  1. String? type,
  2. String? message,
})

Implementation

AttributeLimitExceededException({String? type, String? message})
    : super(
          type: type,
          code: 'AttributeLimitExceededException',
          message: message);