Calc constructor
Calc(})
Implementation
Calc(WidgetModel? parent,
{String? id,
String? operation,
this.source,
this.target,
this.precision,
String? group})
: super(parent, id) {
this.operation = operation?.toLowerCase();
groups = group?.split(",");
}