tokenize method
Implementation
@override
Future<Map<Object?, dynamic>?> tokenize(double contextId,
{required String text}) async {
return await methodChannel.invokeMethod<Map<Object?, dynamic>>(
"tokenize", {"contextId": contextId, "text": text});
}