Untitled

mail@pastecode.io avatar
unknown
dart
5 months ago
253 B
1
Indexable

  static String getCustomerId(String? userId){
    return '${ApiUrl.environment}_${userId}_${Constants.user_type}';
  }

  static String getProviderId(String? providerId){
    return '${ApiUrl.environment}_${providerId}_${Constants.provider_type}';
  }
Leave a Comment