composeUrl function
Implementation
Future<String> composeUrl(
String customerId,
String campaignHash,
String accessToken,
) async {
final baseUrl =
'http://$customerId.bemall.app/promotion/mobile/$campaignHash';
return '$baseUrl/home';
}