CircularWidget constructor

const CircularWidget({
  1. required Widget child,
  2. Key? key,
  3. double? height,
  4. double? width,
})

Implementation

const CircularWidget({
  required this.child,
  final Key? key,
  this.height,
  this.width,
}) : super(key: key);