ObbyEventAuthToken.fromJson constructor

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

Implementation

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