toJson method

Map<String, dynamic> toJson()

Implementation

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