profile static method
Widget
profile({
- double avatarSize = 80,
- int infoLines = 2,
- bool showStats = false,
- int statsCount = 3,
- 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,
);
}