ServiceNotificationEvent.fromMap constructor

ServiceNotificationEvent.fromMap(
  1. Map map
)

Implementation

ServiceNotificationEvent.fromMap(Map<dynamic, dynamic> map) {
  id = map['id'];
  canReply = map['canReply'];
  haveExtraPicture = map['haveExtraPicture'];
  hasRemoved = map['hasRemoved'];
  extrasPicture = map['notificationExtrasPicture'];
  packageName = map['packageName'];
  title = map['title'];
  appIcon = map['appIcon'];
  largeIcon = map['largeIcon'];
  content = map['content'];
}