fill static method
Creates a circular clip that fills the parent.
Implementation
static Widget fill({
Key? key,
required Widget child,
Clip clipBehavior = Clip.antiAlias,
}) {
return _CircleClipFill(
key: key,
clipBehavior: clipBehavior,
child: child,
);
}