LoadingBorder constructor

const LoadingBorder({
  1. Key? key,
  2. required Widget child,
  3. double padding = 16.0,
  4. double strokeWidth = 4.0,
  5. double borderRadius = 0.0,
  6. bool animate = true,
  7. bool isNetwork = false,
})

Implementation

const LoadingBorder({
  super.key,
  required this.child,
  this.padding = 16.0,
  this.strokeWidth = 4.0,
  this.borderRadius = 0.0,
  this.animate = true,
  this.isNetwork = false,
});