toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data['access_token'] = this.accessToken;
  data['token_type'] = this.tokenType;
  data['expires_in'] = this.expiresIn;
  data['scope'] = this.scope;
  data['code'] = this.code;
  data['refresh_expires_in'] = this.refreshExpiresIn;
  data['not-before-policy'] = this.notBeforePolicy;
  data['refresh_token'] = this.refreshToken;
  data['session_state'] = this.sessionState;
  return data;
}