lazy<T> function

Late<T> lazy<T>(
  1. T factory()
)

Implementation

Late<T> lazy<T>(T Function() factory) => Late(factory);