SubscriberList.fromMap constructor
Implementation
factory SubscriberList.fromMap(Map<String, dynamic> map) {
  return SubscriberList(
    total: map['total'],
    subscribers: List<Subscriber>.from(
      map['subscribers'].map((p) => Subscriber.fromMap(p)),
    ),
  );
}