fromJson static method
- dynamic json
Implementation
static PushNotificationStatusChangedEvent fromJson(dynamic json) {
var status = PushNotificationStatus.fromJson(json["status"]);
return PushNotificationStatusChangedEvent._internal(status);
}
static PushNotificationStatusChangedEvent fromJson(dynamic json) {
var status = PushNotificationStatus.fromJson(json["status"]);
return PushNotificationStatusChangedEvent._internal(status);
}