toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
if (this.expiresInSeconds != null) {
json[r'expires_in_seconds'] = this.expiresInSeconds;
} else {
json[r'expires_in_seconds'] = null;
}
return json;
}