ApplicationReportingSettings.fromJson constructor

ApplicationReportingSettings.fromJson(
  1. Map json_
)

Implementation

ApplicationReportingSettings.fromJson(core.Map json_)
    : this(
        includeRemovedApps: json_.containsKey('includeRemovedApps')
            ? json_['includeRemovedApps'] as core.bool
            : null,
      );