create<T> static method

Topic create<T>({
  1. String? target,
  2. String? path,
  3. String? fragment,
  4. Map<String, String>? arguments,
})

Implementation

static Topic create<T>({String? target, String? path, String? fragment, Map<String, String>? arguments}) {
  return Topic.fromParametr(
      type: T..runtimeType, target: target, path: path, fragment: fragment, arguments: arguments);
}