apply method

  1. @override
Component apply(
  1. String name,
  2. Map<String, String> attributes,
  3. Component? child
)
override

Builds a component with the given name, attributes, and child.

Implementation

@override
Component apply(String name, Map<String, String> attributes, Component? child) {
  return this;
}