AvatarGroup.toEnd constructor

AvatarGroup.toEnd({
  1. Key? key,
  2. required List<AvatarWidget> children,
  3. double? gap,
  4. double offset = 0.5,
})

Implementation

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