dispose method

Future<bool> dispose()

Be sure to call this method when you no longer use translation

Implementation

Future<bool> dispose() async {
  bool? state = await _channel.invokeMethod('dispose');
  return state ?? false;
}