LokotroPayResponseMessage.info constructor

LokotroPayResponseMessage.info({
  1. required String message,
  2. String title = 'Information',
})

Implementation

factory LokotroPayResponseMessage.info({
  required String message,
  String title = 'Information',
}) {
  return LokotroPayResponseMessage(
    message: message,
    title: title,
    screenType: LokotroPayResultScreen.infoScreen,
  );
}