ActiveTalker.fromJson constructor

ActiveTalker.fromJson(
  1. dynamic json
)

Implementation

ActiveTalker.fromJson(dynamic json) {
  if (json['activeList'] != null) {
    _activeList = [];
    json['activeList'].forEach((v) {
      _activeList?.add(ActiveList.fromJson(v));
    });
  }
}