PN532BadResponseException constructor

PN532BadResponseException({
  1. required List<int> response,
  2. String? additionalInformation,
})

Implementation

PN532BadResponseException({
  required this.response,
  String? additionalInformation,
}) : super(
          information:
              "The bad response was the following $response. ${additionalInformation ?? ''}");