StoryImage constructor

const StoryImage({
  1. Key? key,
  2. required String imageUrl,
  3. bool? isAsset = false,
})

Implementation

const StoryImage({
  Key? key,
  required this.imageUrl,
  this.isAsset = false,
}) : super(key: key);