ProgramSource_Bundle constructor

ProgramSource_Bundle({
  1. List<int>? bundle,
})

Implementation

factory ProgramSource_Bundle({
  $core.List<$core.int>? bundle,
}) {
  final _result = create();
  if (bundle != null) {
    _result.bundle = bundle;
  }
  return _result;
}