ExportDetailsSuccess constructor

ExportDetailsSuccess({
  1. String? events,
})

Implementation

factory ExportDetailsSuccess({
  $core.String? events,
}) {
  final result = create();
  if (events != null) result.events = events;
  return result;
}