newImageUrl static method
String
newImageUrl(
- String? imageUrl,
- ImageDealType imageDealType, {
- double? width,
- double? height,
- void lastImageUrlGetBlock(
- String lastImageUrl
Implementation
static String newImageUrl(
String? imageUrl,
ImageDealType imageDealType, {
double? width,
double? height,
void Function(String lastImageUrl)? lastImageUrlGetBlock,
}) {
return BaseDataVientiane.newImageUrl(
imageUrl,
imageDealType,
canVientianeGetBlock: (String checkImageUrl) {
return canVientiane(checkImageUrl);
},
widthLadderValue: 50.w_pt_cj,
widthLadderCount: 8,
width: width,
height: height,
lastImageUrlGetBlock: lastImageUrlGetBlock,
);
}