V2ServerKeyRestrictions.fromJson constructor

V2ServerKeyRestrictions.fromJson(
  1. Map json_
)

Implementation

V2ServerKeyRestrictions.fromJson(core.Map json_)
    : this(
        allowedIps: json_.containsKey('allowedIps')
            ? (json_['allowedIps'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );