decodeJwt method
Implementation
Future<Claims> decodeJwt({required String jwt, dynamic hint}) {
var arg0 = _platform.api2wire_String(jwt);
return _platform.executeNormal(FlutterRustBridgeTask(
callFfi: (port_) => _platform.inner.wire_decode_jwt(port_, arg0),
parseSuccessData: _wire2api_claims,
parseErrorData: _wire2api_FrbAnyhowException,
constMeta: kDecodeJwtConstMeta,
argValues: [jwt],
hint: hint,
));
}