toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final certificateHashMd5 = this.certificateHashMd5;
  final certificateHashSha1 = this.certificateHashSha1;
  final certificateHashSha256 = this.certificateHashSha256;
  return {
    'certificateHashMd5': ?certificateHashMd5,
    'certificateHashSha1': ?certificateHashSha1,
    'certificateHashSha256': ?certificateHashSha256,
  };
}