SkaletionRow constructor

SkaletionRow({
  1. Key? key,
  2. Widget? child,
  3. int items = 1,
  4. Duration period = const Duration(seconds: 2),
  5. Color highlightColor = const Color(0xFFC0C0C0),
  6. Color baseColor = const Color(0xFFE0E0E0),
  7. SkeletonDirection direction = SkeletonDirection.ltr,
  8. EdgeInsetsGeometry? itemMargin,
  9. EdgeInsetsGeometry? itemPadding,
})

Implementation

SkaletionRow(
    {Key? key,
    this.child,
    this.items = 1,
    this.period = const Duration(seconds: 2),
    this.highlightColor = const Color(0xFFC0C0C0),
    this.baseColor = const Color(0xFFE0E0E0),
    this.direction = SkeletonDirection.ltr,
    this.itemMargin,
    this.itemPadding})
    : super(key: key);