RuntimeCall constructor

const RuntimeCall({
  1. required String palletName,
  2. required int palletIndex,
  3. required String callName,
  4. required int callIndex,
  5. required Map<String, dynamic> args,
})

Implementation

const RuntimeCall({
  required this.palletName,
  required this.palletIndex,
  required this.callName,
  required this.callIndex,
  required this.args,
});