AndroidNotificationEvent.fromMap constructor

AndroidNotificationEvent.fromMap(
  1. Map map
)

Implementation

AndroidNotificationEvent.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'];
  canClear = map['canClear'];
  isAppGroup = map['isAppGroup'];
  isGroup = map['isGroup'];
  isOngoing = map['isOngoing'];
}