fromJson static method

ParameterVariable fromJson(
  1. Map<String, dynamic> json
)
override

Implementation

static ParameterVariable fromJson(Map<String, dynamic> json) {
  return ParameterVariable(
    id: json['id'],
    name: json['name'],
    variable: Variable.fromJson(json['variable']),
  );
}