ServiceClass constructor
Implementation
ServiceClass(Map<String, FuncClass> fields) : super() {
_fields = (fields.entries).toList();
_fields.sort((a, b) =>
idlLabelToId(a.key.toString()).toInt() -
idlLabelToId(b.key.toString()).toInt());
}