OfflinePushInfo.fromJson constructor

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

Implementation

OfflinePushInfo.fromJson(Map<String, dynamic> json) {
  title = json['title'];
  desc = json['desc'];
  ex = json['ex'];
  iOSPushSound = json['iOSPushSound'];
  iOSBadgeCount = json['iOSBadgeCount'];
}