userTrace method
Future<Response>
userTrace({
- String? id,
- String? email,
- int? gender,
- String? birth,
- String? phone,
- String? area,
- String? applicationId,
- String? ver,
override
Implementation
Future<http.Response> userTrace({
String? id,
String? email,
int? gender,
String? birth,
String? phone,
String? area,
String? applicationId,
String? ver,
}) async {
if(ver == null) {
PackageInfo packageInfo = await PackageInfo.fromPlatform();
ver = packageInfo.version;
}
return BootpayAnalytics.userTrace(
id: id,
email: email,
gender: gender,
birth: birth,
phone: phone,
area: area,
applicationId: applicationId,
ver: ver
);
}