AutoInstallConstraint.fromJson constructor

AutoInstallConstraint.fromJson(
  1. Map json_
)

Implementation

AutoInstallConstraint.fromJson(core.Map json_)
    : this(
        chargingStateConstraint:
            json_['chargingStateConstraint'] as core.String?,
        deviceIdleStateConstraint:
            json_['deviceIdleStateConstraint'] as core.String?,
        networkTypeConstraint: json_['networkTypeConstraint'] as core.String?,
      );