toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'iss'] = this.iss;
json[r'sub'] = this.sub;
json[r'iat'] = this.iat;
json[r'exp'] = this.exp;
json[r'aud'] = this.aud;
json[r'uid'] = this.uid;
return json;
}