toJson method
Mapping NotificationCategory to json.
Implementation
Map<String, dynamic> toJson() {
List<Map<String, dynamic>>? actions = this.actions!.map((i) => i.toJson()).toList();
return {
'identifier': identifier,
'actions': actions,
};
}