fromTransferableState static method
Implementation
static Future<Mecab> fromTransferableState(MecabTransferableState state) async {
return await Mecab.create(
dictDir: state.mecabDictDirPath,
options: state.options,
webLibmecabPath: state.webLibMecabPath,
);
}