apply method
Builds a component with the given name, attributes, and child.
Implementation
@override
Component apply(String name, Map<String, String> attributes, Component? child) {
return _Callout(type: name.toLowerCase(), child: child!);
}
Builds a component with the given name, attributes, and child.
@override
Component apply(String name, Map<String, String> attributes, Component? child) {
return _Callout(type: name.toLowerCase(), child: child!);
}