validatePerson method
Implementation
Future<dynamic> validatePerson(String atsign, String email, String? otp,
{bool confirmation = false}) async {
if (!initialized) {
_init();
}
Map data;
String path = AppConstants.apiPath + AppConstants.validatePerson;
data = {
'email': '$email',
'atsign': "$atsign",
'otp': '$otp',
'confirmation': confirmation
};
var response = await postRequest(path, data);
return response;
}