CreateBuiltInVariableResponse.fromJson constructor

CreateBuiltInVariableResponse.fromJson(
  1. Map json_
)

Implementation

CreateBuiltInVariableResponse.fromJson(core.Map json_)
  : this(
      builtInVariable:
          (json_['builtInVariable'] as core.List?)
              ?.map(
                (value) => BuiltInVariable.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
    );