BatchCreateVariableError.fromJson constructor
Implementation
factory BatchCreateVariableError.fromJson(Map<String, dynamic> json) {
return BatchCreateVariableError(
code: json['code'] as int?,
message: json['message'] as String?,
name: json['name'] as String?,
);
}