certificateCheck method

Future<void> certificateCheck(
  1. Transport transport
)

Checks the certificate of the Satscard to ensure it's an authentic card. isCertsChecked will be updated based on the result

Implementation

Future<void> certificateCheck(Transport transport) => Implementation.instance
    .satscardCertificateCheck(transport, handle)
    .then((value) => isCertsChecked = value);