toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accountId = this.accountId;
  final containerId = this.containerId;
  final domainName = this.domainName;
  final enabledBuiltInVariable = this.enabledBuiltInVariable;
  final fingerprint = this.fingerprint;
  final name = this.name;
  final notes = this.notes;
  final publicId = this.publicId;
  final timeZoneCountryId = this.timeZoneCountryId;
  final timeZoneId = this.timeZoneId;
  final usageContext = this.usageContext;
  return {
    'accountId': ?accountId,
    'containerId': ?containerId,
    'domainName': ?domainName,
    'enabledBuiltInVariable': ?enabledBuiltInVariable,
    'fingerprint': ?fingerprint,
    'name': ?name,
    'notes': ?notes,
    'publicId': ?publicId,
    'timeZoneCountryId': ?timeZoneCountryId,
    'timeZoneId': ?timeZoneId,
    'usageContext': ?usageContext,
  };
}