ImportDataResponse constructor
      
      ImportDataResponse({ 
    
    
- Iterable<ImportDataError> ? errors,
- ImportDataSuccess? success,
Implementation
factory ImportDataResponse({
  $core.Iterable<ImportDataError>? errors,
  ImportDataSuccess? success,
}) {
  final $result = create();
  if (errors != null) {
    $result.errors.addAll(errors);
  }
  if (success != null) {
    $result.success = success;
  }
  return $result;
}