getCircularProgressIndicator method Null safety

dynamic getCircularProgressIndicator()

Implementation

@protected
Widget getCircularProgressIndicator() => SizedBox(
      width: width ?? height,
      height: height ?? width,
      child: const CircularProgressIndicator(),
    );