toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accountId = this.accountId;
  final containerId = this.containerId;
  final description = this.description;
  final fingerprint = this.fingerprint;
  final name = this.name;
  final path = this.path;
  final tagManagerUrl = this.tagManagerUrl;
  final workspaceId = this.workspaceId;
  return {
    'accountId': ?accountId,
    'containerId': ?containerId,
    'description': ?description,
    'fingerprint': ?fingerprint,
    'name': ?name,
    'path': ?path,
    'tagManagerUrl': ?tagManagerUrl,
    'workspaceId': ?workspaceId,
  };
}