UnitVariable.fromJson constructor

UnitVariable.fromJson(
  1. Map json_
)

Implementation

UnitVariable.fromJson(core.Map json_)
  : this(
      type: json_['type'] as core.String?,
      value: json_['value'] as core.String?,
      variable: json_['variable'] as core.String?,
    );