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