submitKwikFormData method
Submit a filled KwikForm.
Parameters mirror the KwikForm fields collected from the user.
Implementation
Future<Result<dynamic>> submitKwikFormData({
required String phone,
required String countryCode,
required String address,
required String name,
required String gender,
required String firstName,
required String lastName,
required String email,
required bool consent,
}) async {
return await ApiService.submitKwikFormData(
phone: phone,
countryCode: countryCode,
address: address,
name: name,
gender: gender,
firstName: firstName,
lastName: lastName,
email: email,
consent: consent,
);
}