TransactionNotificationResponse constructor

TransactionNotificationResponse({
  1. List<int>? response,
})

Implementation

factory TransactionNotificationResponse({
  $core.List<$core.int>? response,
}) {
  final $result = create();
  if (response != null) {
    $result.response = response;
  }
  return $result;
}