createHypen<T> function

SimpleInfoWrapper<T> createHypen<T>(
  1. T build(
    1. RetrieveInformation hypen
    )
)

Implementation

SimpleInfoWrapper<T> createHypen<T>(
  T Function(RetrieveInformation hypen) build,
) {
  return SimpleInfoWrapper(build);
}