userTrace method

Future<Response> userTrace({
  1. String? id,
  2. String? email,
  3. int? gender,
  4. String? birth,
  5. String? phone,
  6. String? area,
  7. String? applicationId,
  8. 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
  );
}