build method

Widget build({
  1. bool? circular,
  2. bool? solid,
  3. Color? color,
  4. Color? foregroundColor,
  5. double? size,
})

Builds as a widget

Implementation

Widget build({
  bool? circular,
  bool? solid,
  Color? color,
  Color? foregroundColor,
  double? size,
}) {
  return copyWith(
    circular: circular,
    isSolid: solid,
    color: color,
    foregroundColor: foregroundColor,
    size: size,
  ).widget;
}