onDeviceUserRegister method

  1. @override
void onDeviceUserRegister(
  1. String uid,
  2. String name,
  3. String age,
  4. String email,
  5. String phone,
  6. String gender,
  7. String token,
  8. String profileUrl,
  9. String dob,
  10. String education,
  11. bool employed,
  12. bool married,
)
override

Implementation

@override
onDeviceUserRegister(String uid, String name, String age, String email, String phone, String gender, String token, String profileUrl, String dob, String education, bool employed, bool married) {
  methodChannel.invokeMapMethod('onDeviceUserRegister',{'uid':uid,'name':name,'age':age,'email':email,'phone':phone,'gender':gender,'token':token,'profileUrl':profileUrl,'dob':dob,'education':education,'employed':employed,'married':married});
}