MecabTransferableState.fromJson constructor
Implementation
factory MecabTransferableState.fromJson(Map<String, dynamic> json) {
return MecabTransferableState(
mecabDictDirPath: json["mecabDictDirPath"],
options: json["options"],
webLibMecabPath: json["webLibMecabPath"],
);
}