NotificationButton.fromJSON constructor

NotificationButton.fromJSON(
  1. Map<String, dynamic> json
)

Implementation

NotificationButton.fromJSON(Map<String, dynamic> json)
    : actionId = json['actionId'] == null ? json['id'] : json['actionId'],
      title = json['title'];