toJson method

Map<String, dynamic> toJson()

Implementation

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