V2TimTextElem.fromJson constructor

V2TimTextElem.fromJson(
  1. Map json
)

Implementation

V2TimTextElem.fromJson(Map json) {
  json = Utils.formatJson(json);
  text = json['text'];
  if (json['nextElem'] != null) {
    nextElem = Utils.formatJson(json['nextElem']);
  }
}