create static method

ActorSystem create([
  1. ActorSystemConfig? config
])

Creates a new actor system.

Implementation

static ActorSystem create([ActorSystemConfig? config]) {
  return LocalActorSystem(config);
}