LokotroPayResponseMessage constructor

LokotroPayResponseMessage({
  1. required String message,
  2. required String title,
  3. required LokotroPayResultScreen screenType,
  4. DateTime? timestamp,
})

Implementation

LokotroPayResponseMessage({
  required this.message,
  required this.title,
  required this.screenType,
  DateTime? timestamp,
}) : timestamp = timestamp ?? DateTime.now();