openCameraWithCreateProcess method
Inicia camera inteligenre e cria um processo
Implementation
void openCameraWithCreateProcess(String nome, String code, String gender, String birthdate, String email, String phone ) async {
var map = buildMap();
map["nome"] = nome;
map["code"] = code;
map["gender"] = gender;
map["birthdate"] = birthdate;
map["email"] = email;
map["phone"] = phone;
final Map<dynamic, dynamic> result = await _channel.invokeMethod('openCameraWithCreateProcess',map);
if(validResult(result)){
if(result["flutterstatus"] == 1){
iAcessoBioCamera.onSuccessCamera(ResultCamera(result));
}else{
iAcessoBioCamera.onErrorCamera(ErrorBio(result));
}
}
}