PN532WrongResponseException constructor

PN532WrongResponseException({
  1. required int command,
  2. required List<int> response,
})

Implementation

PN532WrongResponseException({
  required this.command,
  required this.response,
}) : super(
          information:
              "The received response: $response, doesn't match the called function $command");