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;
}