userTrace method

  1. @override
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

@override
Future<http.Response> userTrace({
  String? id,
  String? email,
  int? gender,
  String? birth,
  String? phone,
  String? area,
  String? applicationId,
  String? ver,
}) {

  return _platform.userTrace(
      id: id,
      email: email,
      gender: gender,
      birth: birth,
      phone: phone,
      area: area,
      applicationId: applicationId,
      ver: ver
  );
}