fromJson static method

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

Implementation

static GeneralCubitVariableField fromJson(Map<String, dynamic> json) {
  return GeneralCubitVariableField(
    cubitID: json['cubit_id'],
    stateID: json['state_id'],
    variableID: json['variable_id'],
    modelAttribute: json['attribute'] != null
        ? ModelFieldGetAttribute.fromJson(json['attribute'])
        : null,
    jsonAttribute: json['json_attribute'] != null
        ? JsonGetAttribute.fromJson(json['json_attribute'])
        : null,
  );
}