ServiceClass constructor

ServiceClass(
  1. Map<String, FuncClass> fields
)

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());
}