ObbyEventAuthToken.fromJson constructor
Implementation
factory ObbyEventAuthToken.fromJson(Map<String, dynamic> json) => ObbyEventAuthToken(
service: json['service'] as String,
endpoint: json['endpoint'] as String,
token: json['token'] as String,
);