profile static method

Widget profile({
  1. double avatarSize = 80,
  2. int infoLines = 2,
  3. bool showStats = false,
  4. int statsCount = 3,
  5. SkeletonConfig? config,
})

Create a profile skeleton

Implementation

static Widget profile({
  double avatarSize = 80,
  int infoLines = 2,
  bool showStats = false,
  int statsCount = 3,
  SkeletonConfig? config,
}) {
  return SkeletonProfile(
    avatarSize: avatarSize,
    infoLines: infoLines,
    showStats: showStats,
    statsCount: statsCount,
    config: config,
  );
}