SessionInfo.fromJson constructor

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

Implementation

SessionInfo.fromJson(Map<String, dynamic> json) {
  sessionToken = json['sessionToken'];
  sessionSecret = json['sessionSecret'];
  expiresIn = json['expires_in'];
}