LcpException constructor

const LcpException(
  1. String userMessageId,
  2. {dynamic args = const [],
  3. int? quantity,
  4. String? message,
  5. Exception? cause}
)

Implementation

const LcpException(String userMessageId,
    {args = const [], int? quantity, this.message, Exception? cause})
    : super(userMessageId, args: args, quantity: quantity, cause: cause);