DataplaneV2FeatureSpec.fromJson constructor

DataplaneV2FeatureSpec.fromJson(
  1. Map json_
)

Implementation

DataplaneV2FeatureSpec.fromJson(core.Map json_)
    : this(
        enableEncryption: json_.containsKey('enableEncryption')
            ? json_['enableEncryption'] as core.bool
            : null,
      );