V2TimTextElem.fromJson constructor

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

Implementation

V2TimTextElem.fromJson(Map<String, dynamic> json) {
  text = json['text'];
  if (json['nextElem'] != null) {
    nextElem = Map<String, dynamic>.from(json['nextElem']);
  }
}