NotificationEvent.fromData constructor

NotificationEvent.fromData(
  1. dynamic data
)

Implementation

factory NotificationEvent.fromData(dynamic data) {
  return NotificationEvent(messageList: jsonDecode(data));
}