init method

Future<bool> init()

Implementation

Future<bool> init() async {
  _hasBeenOpened = await GoogleNLP.channel.invokeMethod<dynamic>(
    'EntityExtractor#init',
    <String, dynamic>{
      'handle': _handle,
      'options': {},
    },
  );
  return _hasBeenOpened;
}