userTrace method
Future<Response>
userTrace({
- String? id,
- String? email,
- int? gender,
- String? birth,
- String? phone,
- String? area,
- String? applicationId,
- String? ver,
override
Implementation
@override
Future<Response> userTrace({String? id, String? email, int? gender, String? birth, String? phone, String? area, String? applicationId, String? ver}) {
// TODO: implement userTrace
return BootpayAnalytics.userTrace(
id: id,
email: email,
gender: gender,
birth: birth,
phone: phone,
area: area,
applicationId: applicationId,
ver: ver
);
}