StoryRecupCardFeed constructor

StoryRecupCardFeed()

Implementation

StoryRecupCardFeed()
    : super(
        name: 'Card/RecupCardFeed',
        builder: (context) {
          const foto =
              "https://images.unsplash.com/photo-1658459239113-39cc85f15154?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1374&q=80";

          return const RecupCardFeed(
            imageAvatar: foto,
            name: 'Ariel',
            email: '@ariel',
            child: Text('child'),
          );
        },
      );