loading static method

dynamic loading()

Implementation

static Widget loading() {
  return Skeletonizer(
    child: Chip(
      avatar: ActerAvatar(
        options: const AvatarOptions(
          AvatarInfo(uniqueId: 'unique Id'),
          size: 24,
        ),
      ),
      label: const Text('unique name'),
    ),
  );
}