ListFlowTriggerTypesResponse constructor

ListFlowTriggerTypesResponse({
  1. Iterable<TriggerType>? result,
})

Implementation

factory ListFlowTriggerTypesResponse({
  $core.Iterable<$24.TriggerType>? result,
}) {
  final _result = create();
  if (result != null) {
    _result.result.addAll(result);
  }
  return _result;
}