GetActionResponse constructor

GetActionResponse({
  1. Action? action,
})

Implementation

factory GetActionResponse({
  $24.Action? action,
}) {
  final _result = create();
  if (action != null) {
    _result.action = action;
  }
  return _result;
}