bindExisting<Alias, Concrete extends Alias> static method

void bindExisting<Alias, Concrete extends Alias>({
  1. String? sourceTag,
  2. String? tag,
})

Binds Alias to an existing local singleton Concrete.

Implementation

static void bindExisting<Alias, Concrete extends Alias>({
  String? sourceTag,
  String? tag,
}) {
  Ls.bindExisting<Alias, Concrete>(
    sourceTag: sourceTag,
    tag: tag,
  );
}