fromJson static method

VariableProperties fromJson(
  1. dynamic value
)

Returns a new VariableProperties instance and imports

Implementation

// ignore: prefer_constructors_over_static_methods
static VariableProperties fromJson(dynamic value) {
  final json = value.cast<String, dynamic>();
  return VariableProperties(
    type: VariablePropertiesTypeEnum.fromJson(json[r'type']),
    values: mapCastOfType<String, String>(json, r'values'),
  );
}