loadingStatus property

Widget get loadingStatus

Implementation

Widget get loadingStatus {
  return Container(
    width: 15,
    height: 15,
    child: CircularProgressIndicator.adaptive(
      strokeWidth: 1,
      valueColor: AlwaysStoppedAnimation<Color>(_style.color),
    ),
  );
}