CardKYCFunction constructor

CardKYCFunction({
  1. Key? key,
  2. required String mobile,
  3. required String template,
  4. required String env,
  5. required dynamic onDataResponse(
    1. String
    ),
})

Implementation

CardKYCFunction(
    {Key? key,
      required this.mobile,
      required this.template,
      required this.env,
      required this.onDataResponse})
    : super(key: key);