signup method
- Map<
String, String> ? properties,
KO: 수동 연결
EN: Manual signup
Implementation
Future<void> signup({Map<String, String>? properties}) {
SdkLog.d(
'[UserApi.signup] started | propertiesCount=${properties?.length ?? 0}',
);
final data = properties != null
? {Constants.properties: properties.toJson()}
: null;
return _client.post(Constants.v1SignupPath, data: data);
}