toJson method

Map<String, dynamic> toJson()

Implementation

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