DartFuse constructor

DartFuse({
  1. dynamic getAttributes,
})

Implementation

factory DartFuse({getAttributes}) {
  _singleton ??= DartFuse._(getAttributes: getAttributes);
  return _singleton!; //compiler can't be abs sure if wont be null, but we know it can't due to line above
}