OpenWLottie constructor

const OpenWLottie({
  1. Key? key,
  2. required dynamic nodeState,
  3. required FTextTypeInput image,
  4. required FSize width,
  5. required FSize height,
  6. required FBoxFit boxFit,
})

Returns a Lottie widget

Implementation

const OpenWLottie({
  super.key,
  required super.nodeState,
  required this.image,
  required this.width,
  required this.height,
  required this.boxFit,
});