PusherId.fromJson constructor

PusherId.fromJson(
  1. Map<String, Object?> json
)

Implementation

PusherId.fromJson(Map<String, Object?> json)
  : appId = json['app_id'] as String,
    pushkey = json['pushkey'] as String;