userTrace static method
Implementation
static Future<http.Response> userTrace({
String? id,
String? email,
int? gender,
String? birth,
String? phone,
String? area,
String? applicationId,
String? ver,
}) async {
var provider = ApiProvider();
return provider.userTrace(
id: id,
email: email,
gender: gender,
birth: birth,
phone: phone,
area: area,
applicationId: applicationId,
ver: ver
);
}