AllocatedConnection.fromJson constructor

AllocatedConnection.fromJson(
  1. Map json_
)

Implementation

AllocatedConnection.fromJson(core.Map json_)
    : this(
        ingressPort: json_.containsKey('ingressPort')
            ? json_['ingressPort'] as core.int
            : null,
        pscUri: json_.containsKey('pscUri')
            ? json_['pscUri'] as core.String
            : null,
      );