TerraformVariable.fromJson constructor

TerraformVariable.fromJson(
  1. Map json_
)

Implementation

TerraformVariable.fromJson(core.Map json_)
    : this(
        inputValue:
            json_.containsKey('inputValue') ? json_['inputValue'] : null,
      );