userTrace method
Future<Response>
userTrace({
- String? id,
- String? email,
- int? gender,
- String? birth,
- String? phone,
- String? area,
- String? applicationId,
override
Implementation
@override
Future<http.Response> userTrace({
String? id,
String? email,
int? gender,
String? birth,
String? phone,
String? area,
String? applicationId
}) {
return _platform.userTrace(
id: id,
email: email,
gender: gender,
birth: birth,
phone: phone,
area: area,
applicationId: applicationId,
ver: BootpayConfig.VERSION
);
}