ImportDataSuccess constructor

ImportDataSuccess({
  1. Iterable<ImportDataSuccessOrg>? orgs,
})

Implementation

factory ImportDataSuccess({
  $core.Iterable<ImportDataSuccessOrg>? orgs,
}) {
  final _result = create();
  if (orgs != null) {
    _result.orgs.addAll(orgs);
  }
  return _result;
}