DefaultApplicationInfo.fromJson constructor

DefaultApplicationInfo.fromJson(
  1. Map json_
)

Implementation

DefaultApplicationInfo.fromJson(core.Map json_)
  : this(
      defaultApplicationSettingAttempts:
          (json_['defaultApplicationSettingAttempts'] as core.List?)
              ?.map(
                (value) => DefaultApplicationSettingAttempt.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
      defaultApplicationType: json_['defaultApplicationType'] as core.String?,
      packageName: json_['packageName'] as core.String?,
    );