LocationPolicyLocationConstraints.fromJson constructor

LocationPolicyLocationConstraints.fromJson(
  1. Map json_
)

Implementation

LocationPolicyLocationConstraints.fromJson(core.Map json_)
    : this(
        maxCount: json_.containsKey('maxCount')
            ? json_['maxCount'] as core.int
            : null,
      );