verify abstract method

bool verify(
  1. JWTKey key,
  2. Uint8List body,
  3. Uint8List signature
)

Verify the signature of body with key

return true if the signature is correct false otherwise

Implementation

bool verify(JWTKey key, Uint8List body, Uint8List signature);