InstallConstraint.fromJson constructor

InstallConstraint.fromJson(
  1. Map json_
)

Implementation

InstallConstraint.fromJson(core.Map json_)
  : this(
      chargingConstraint: json_['chargingConstraint'] as core.String?,
      deviceIdleConstraint: json_['deviceIdleConstraint'] as core.String?,
      networkTypeConstraint: json_['networkTypeConstraint'] as core.String?,
    );