Payment constructor

Payment({
  1. String paymentId = '',
  2. PINAppIntent? pinAppIntent,
  3. HttpService? httpService,
})

Implementation

Payment(
    {this.paymentId = '',
    PINAppIntent? pinAppIntent,
    HttpService? httpService})
    : _appIntent = pinAppIntent ?? PINAppIntentImpl(),
      _httpService = httpService ?? HttpServiceImpl();