OfflinePushInfo.fromJson constructor

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

Implementation

OfflinePushInfo.fromJson(Map<String, dynamic> json) {
  title = json['title'];
  desc = json['desc'];
  disablePush = json['disablePush'];
  ext = json['ext'];
  iOSSound = json['iOSSound'];
  ignoreIOSBadge = json['ignoreIOSBadge'];
  androidOPPOChannelID = json['androidOPPOChannelID'];
}