toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final autoInstallPolicy = this.autoInstallPolicy;
  final autoUpdateMode = this.autoUpdateMode;
  final enterpriseAuthenticationAppLinkConfigs =
      this.enterpriseAuthenticationAppLinkConfigs;
  final managedConfiguration = this.managedConfiguration;
  final productId = this.productId;
  final trackIds = this.trackIds;
  final tracks = this.tracks;
  return {
    'autoInstallPolicy': ?autoInstallPolicy,
    'autoUpdateMode': ?autoUpdateMode,
    'enterpriseAuthenticationAppLinkConfigs':
        ?enterpriseAuthenticationAppLinkConfigs,
    'managedConfiguration': ?managedConfiguration,
    'productId': ?productId,
    'trackIds': ?trackIds,
    'tracks': ?tracks,
  };
}