AvatarGroup.toBottom constructor
AvatarGroup.toBottom({
- Key? key,
- required List<
AvatarWidget> children, - double? gap,
- double offset = 0.5,
Implementation
factory AvatarGroup.toBottom({
Key? key,
required List<AvatarWidget> children,
double? gap,
double offset = 0.5,
}) {
return AvatarGroup(
key: key,
alignment: Alignment(0, -offset),
gap: gap,
children: children,
);
}