call method

ReactNode call(
  1. P props, {
  2. ReactRef<T>? ref,
})

Builds a node with an optional Dart ref.

Implementation

ReactNode call(P props, {ReactRef<T>? ref}) =>
    ForwardRefNode(render, props, ref: ref);