PaylikeClientResponse constructor Null safety

PaylikeClientResponse(
  1. {required bool isHTML,
  2. PaymentResponse? paymentResponse,
  3. String? HTMLBody,
  4. List<String> hints = const []}
)

Implementation

PaylikeClientResponse({
  required this.isHTML,
  this.paymentResponse,
  this.HTMLBody,
  this.hints = const [],
});