VariableSet.fromJson constructor

VariableSet.fromJson(
  1. Map json_
)

Implementation

VariableSet.fromJson(core.Map json_)
    : this(
        placeholder: json_.containsKey('placeholder')
            ? json_['placeholder'] as core.String
            : null,
        userValue: json_.containsKey('userValue')
            ? json_['userValue'] as core.String
            : null,
      );