IntakeVlanAttachment.fromJson constructor

IntakeVlanAttachment.fromJson(
  1. Map json_
)

Implementation

IntakeVlanAttachment.fromJson(core.Map json_)
    : this(
        id: json_.containsKey('id') ? json_['id'] as core.String : null,
        pairingKey: json_.containsKey('pairingKey')
            ? json_['pairingKey'] as core.String
            : null,
      );