fill static method

Widget fill({
  1. Key? key,
  2. required Widget child,
  3. Clip clipBehavior = Clip.antiAlias,
})

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,
  );
}