InterconnectAttachmentConfigurationConstraintsBgpPeerASNRange.fromJson constructor

InterconnectAttachmentConfigurationConstraintsBgpPeerASNRange.fromJson(
  1. Map json_
)

Implementation

InterconnectAttachmentConfigurationConstraintsBgpPeerASNRange.fromJson(
    core.Map json_)
    : this(
        max: json_.containsKey('max') ? json_['max'] as core.int : null,
        min: json_.containsKey('min') ? json_['min'] as core.int : null,
      );