toJson method

Map<String, dynamic> toJson()

Implementation

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