TUIImage constructor
const
TUIImage({})
Implementation
const TUIImage({
super.key,
String? imageUrl,
String? assetPath,
double? width,
double? height,
BoxFit? fit,
}) : _assetPath = assetPath,
_imageUrl = imageUrl,
_width = width,
_height = height,
_fit = fit,
assert(
imageUrl != null || assetPath != null,
'imageUrl or assetPath must be provided.',
);