Command<T> constructor

Command<T>(
  1. EventBus busBinded, {
  2. String? path,
  3. int maxLen = 10,
})

Implementation

factory Command(EventBus busBinded, {String? path, int maxLen = 10}) {
  return CommandImpl(busBinded, path: path, maxLen: maxLen);
}