toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final apiKey = this.apiKey;
final geAuthProvider = this.geAuthProvider;
final threeLeggedOauth = this.threeLeggedOauth;
final twoLeggedOauth = this.twoLeggedOauth;
return {
'apiKey': ?apiKey,
'geAuthProvider': ?geAuthProvider,
'threeLeggedOauth': ?threeLeggedOauth,
'twoLeggedOauth': ?twoLeggedOauth,
};
}