toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final creationRecord = this.creationRecord;
  final description = this.description;
  final displayName = this.displayName;
  final enabled = this.enabled;
  final labels = this.labels;
  final mutationRecords = this.mutationRecords;
  final name = this.name;
  final type = this.type;
  final userLabels = this.userLabels;
  final verificationStatus = this.verificationStatus;
  return {
    'creationRecord': ?creationRecord,
    'description': ?description,
    'displayName': ?displayName,
    'enabled': ?enabled,
    'labels': ?labels,
    'mutationRecords': ?mutationRecords,
    'name': ?name,
    'type': ?type,
    'userLabels': ?userLabels,
    'verificationStatus': ?verificationStatus,
  };
}