operator + method

List<Module> operator +(
  1. Module other
)

Implementation

List<Module> operator +(Module other) {
  return List.from([this, other]);
}