ChatData.fromJson constructor

ChatData.fromJson(
  1. dynamic json
)

Implementation

ChatData.fromJson(dynamic json) {
  _type = json['type'];
  _data = json['data'];
}