newImageUrl static method

String newImageUrl(
  1. String? imageUrl,
  2. ImageDealType imageDealType, {
  3. double? width,
  4. double? height,
  5. void lastImageUrlGetBlock(
    1. 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,
  );
}