MecabTransferableState.fromJson constructor

MecabTransferableState.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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