GoogleAppsDriveLabelsV2LabelEnabledAppSettings.fromJson constructor

GoogleAppsDriveLabelsV2LabelEnabledAppSettings.fromJson(
  1. Map json_
)

Implementation

GoogleAppsDriveLabelsV2LabelEnabledAppSettings.fromJson(core.Map json_)
  : this(
      enabledApps: (json_['enabledApps'] as core.List?)
          ?.map(
            (value) =>
                GoogleAppsDriveLabelsV2LabelEnabledAppSettingsEnabledApp.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
          )
          .toList(),
    );