invoke function

Builder invoke(
  1. Builder value, [
  2. Iterable<Element>? elements
])

Returns the invocation of this.

this()

Implementation

Builder invoke(
  Builder value, [
  Iterable<Element>? elements,
]) {
  elements ??= const [];

  return Row([
    value,
    Invoke(elements),
  ]);
}