tokenize method

Future<Map<Object?, dynamic>?> tokenize(
  1. double contextId, {
  2. required String text,
})

Implementation

Future<Map<Object?, dynamic>?> tokenize(double contextId,
    {required String text}) {
  return FCllamaPlatform.instance.tokenize(contextId, text: text);
}