getCharge static method

BoltCharge? getCharge(
  1. String name
)

Look up registered charge by name.

Implementation

static BoltCharge? getCharge(String name) {
  return _instance._outputs[name];
}