toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accessKeyId = this.accessKeyId;
final bucket = this.bucket;
final endpoint = this.endpoint;
final region = this.region;
final schemeType = this.schemeType;
final secretAccessKeySecret = this.secretAccessKeySecret;
return {
'accessKeyId': ?accessKeyId,
'bucket': ?bucket,
'endpoint': ?endpoint,
'region': ?region,
'schemeType': ?schemeType,
'secretAccessKeySecret': ?secretAccessKeySecret,
};
}