Notification.fromJson constructor

Notification.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory Notification.fromJson(Map<String, dynamic> json) => Notification(
      json['cmd'] as String,
      json['params'] as List<String>,
      json['id'] as int,
    );