converToAsyncBind method

Future<Bind<T>> converToAsyncBind()

Implementation

Future<Bind<T>> converToAsyncBind() async {
  final bindValue = await resolveAsyncBind();
  return Bind<T>((i) => bindValue, export: export);
}