BridgeNotification.fromJson constructor

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

Implementation

factory BridgeNotification.fromJson(Map<String, dynamic> json) =>
    BridgeNotification(
      method: json['method'] as String,
      params: json['params'],
    );