$asyncContent function

DOMAsync $asyncContent({
  1. Object? loading,
  2. Future? future,
  3. Future function()?,
})

Creates a div node with display: inline-block.

Implementation

DOMAsync $asyncContent({
  final Object? loading,
  Future? future,
  final Future Function()? function,
}) {
  return DOMAsync(loading: loading, future: future, function: function);
}