maxLoadingSize property

double get maxLoadingSize

Implementation

double get maxLoadingSize {
  if (loadingRadius != null) {
    return loadingRadius!;
  }
  if (width != null && height != null) {
    return min(12, min(width!, height!) * 3 / 2);
  }
  return 12;
}